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 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/m4/xine.m4 b/m4/xine.m4 index 1440ba2de..3f361bfbd 100644 --- a/m4/xine.m4 +++ b/m4/xine.m4 @@ -31,13 +31,14 @@ AC_DEFUN([AM_PATH_XINE], dnl Get the cflags and libraries from the xine-config script dnl AC_ARG_WITH(xine-prefix, - [ --with-xine-prefix=PFX Prefix where XINE is installed (optional)], + AC_HELP_STRING([--with-xine-prefix=DIR], [prefix where XINE is installed (optional)]), xine_config_prefix="$withval", xine_config_prefix="") AC_ARG_WITH(xine-exec-prefix, - [ --with-xine-exec-prefix=PFX Exec prefix where XINE is installed (optional)], + AC_HELP_STRING([--with-xine-exec-prefix=DIR], [exec prefix where XINE is installed (optional)]), xine_config_exec_prefix="$withval", xine_config_exec_prefix="") AC_ARG_ENABLE(xinetest, - [ --disable-xinetest Do not try to compile and run a test XINE program],, enable_xinetest=yes) + AC_HELP_STRING([--disable-xinetest], [do not try to compile and run a test XINE program]), + enable_xinetest=$enableval, enable_xinetest=yes) if test x$xine_config_exec_prefix != x ; then xine_config_args="$xine_config_args --exec-prefix=$xine_config_exec_prefix" |