diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
commit | a5e029f061c56093ab7c61f8e61cd6df60150721 (patch) | |
tree | ea367375020edb29a2bb6cc3e27d62467847a75e /m4/_xine.m4 | |
parent | 4fb3cbf95de50e6f5f6327e6cf962d3ffcc43d04 (diff) | |
download | xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.gz xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.bz2 |
properly use AC_HELP_STRING, properly use $enableval for AC_ARG_ENABLE
CVS patchset: 6217
CVS date: 2004/03/05 16:34:32
Diffstat (limited to 'm4/_xine.m4')
-rw-r--r-- | m4/_xine.m4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/m4/_xine.m4 b/m4/_xine.m4 index 7adf7af0a..fc59ad2b1 100644 --- a/m4/_xine.m4 +++ b/m4/_xine.m4 @@ -72,8 +72,8 @@ AC_DEFUN([AC_PREREQ_LIBTOOL], dnl AC_DEFUN([AC_CHECK_LIRC], [AC_ARG_ENABLE(lirc, - [ --disable-lirc Turn off LIRC support.], - , enable_lirc=yes) + AC_HELP_STRING([--disable-lirc], [turn off LIRC support]), + enable_lirc=$enableval, enable_lirc=yes) if test x"$enable_lirc" = xyes; then have_lirc=yes @@ -104,7 +104,7 @@ AC_DEFUN([AC_CHECK_LIRC], dnl AC_LINUX_PATH(DEFAULT PATH) AC_DEFUN([AC_LINUX_PATH], [AC_ARG_WITH(linux-path, - [ --with-linux-path=PATH Where the linux sources are located], + AC_HELP_STRING([--with-linux-path=PATH], [where the linux sources are located]), linux_path="$withval", linux_path="$1") LINUX_INCLUDE="-I$linux_path/include" ]) @@ -113,8 +113,8 @@ dnl AC_CHECK_DXR3() AC_DEFUN([AC_CHECK_DXR3], [ AC_ARG_ENABLE(dxr3, - [ --disable-dxr3 Do not build the DXR3/HW+ plugins],, - enable_dxr3=yes) + AC_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 AC_MSG_RESULT([*** checking for a supported mpeg encoder]) |