summaryrefslogtreecommitdiff
path: root/m4/dvdnav.m4
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-03-05 16:34:32 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-03-05 16:34:32 +0000
commita5e029f061c56093ab7c61f8e61cd6df60150721 (patch)
treeea367375020edb29a2bb6cc3e27d62467847a75e /m4/dvdnav.m4
parent4fb3cbf95de50e6f5f6327e6cf962d3ffcc43d04 (diff)
downloadxine-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/dvdnav.m4')
-rw-r--r--m4/dvdnav.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/m4/dvdnav.m4 b/m4/dvdnav.m4
index 5c33a0b63..aa4a2b0f9 100644
--- a/m4/dvdnav.m4
+++ b/m4/dvdnav.m4
@@ -31,13 +31,14 @@ AC_DEFUN([AM_PATH_DVDNAV],
dnl Get the cflags and libraries from the dvdnav-config script
dnl
AC_ARG_WITH(dvdnav-prefix,
- [ --with-dvdnav-prefix=PFX Prefix where DVDNAV is installed (optional)],
+ AC_HELP_STRING([--with-dvdnav-prefix=DIR], [prefix where DVDNAV is installed (optional)]),
dvdnav_config_prefix="$withval", dvdnav_config_prefix="")
AC_ARG_WITH(dvdnav-exec-prefix,
- [ --with-dvdnav-exec-prefix=PFX Exec prefix where DVDNAV is installed (optional)],
+ AC_HELP_STRING([--with-dvdnav-exec-prefix=DIR], [exec prefix where DVDNAV is installed (optional)]),
dvdnav_config_exec_prefix="$withval", dvdnav_config_exec_prefix="")
AC_ARG_ENABLE(dvdnavtest,
- [ --disable-dvdnavtest Do not try to compile and run a test DVDNAV program],, enable_dvdnavtest=yes)
+ AC_HELP_STRING([--disable-dvdnavtest], [do not try to compile and run a test DVDNAV program]),
+ enable_dvdnavtest=$enableval, enable_dvdnavtest=yes)
if test x$dvdnav_config_exec_prefix != x ; then
dvdnav_config_args="$dvdnav_config_args --exec-prefix=$dvdnav_config_exec_prefix"