diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-03-26 14:21:10 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-03-26 14:21:10 +0000 |
commit | 386f722f1312fb6297fc7a3cd9b85446b55c0330 (patch) | |
tree | 363886aba011e4646a4b909bf09206b947ec7264 /m4/_xine.m4 | |
parent | 6036eb14f8ee8573055a0a12692bb83b32a15ba9 (diff) | |
download | xine-lib-386f722f1312fb6297fc7a3cd9b85446b55c0330.tar.gz xine-lib-386f722f1312fb6297fc7a3cd9b85446b55c0330.tar.bz2 |
Use AS_HELP_STRING instead of the deprecated AC_HELP_STRING.
CVS patchset: 8751
CVS date: 2007/03/26 14:21:10
Diffstat (limited to 'm4/_xine.m4')
-rw-r--r-- | m4/_xine.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/_xine.m4 b/m4/_xine.m4 index 630758298..9acb0f37d 100644 --- a/m4/_xine.m4 +++ b/m4/_xine.m4 @@ -69,7 +69,7 @@ AC_DEFUN([AC_PREREQ_LIBTOOL], dnl AC_DEFUN([AC_CHECK_LIRC], [AC_ARG_ENABLE(lirc, - AC_HELP_STRING([--disable-lirc], [turn off LIRC support]), + AS_HELP_STRING([--disable-lirc], [turn off LIRC support]), enable_lirc=$enableval, enable_lirc=yes) if test x"$enable_lirc" = xyes; then @@ -101,7 +101,7 @@ AC_DEFUN([AC_CHECK_LIRC], dnl AC_LINUX_PATH(DEFAULT PATH) AC_DEFUN([AC_LINUX_PATH], [AC_ARG_WITH(linux-path, - AC_HELP_STRING([--with-linux-path=PATH], [where the linux sources are located]), + AS_HELP_STRING([--with-linux-path=PATH], [where the linux sources are located]), linux_path="$withval", linux_path="$1") LINUX_INCLUDE="-I$linux_path/include" ]) @@ -110,7 +110,7 @@ dnl AC_CHECK_DXR3() AC_DEFUN([AC_CHECK_DXR3], [ AC_ARG_ENABLE(dxr3, - AC_HELP_STRING([--disable-dxr3], [do not build the DXR3/HW+ plugins]), + AS_HELP_STRING([--disable-dxr3], [do not build the DXR3/HW+ plugins]), enable_dxr3=$enableval, enable_dxr3=yes) if test x"$enable_dxr3" = xyes; then have_dxr3=yes |