diff options
Diffstat (limited to 'm4/dvdnav.m4')
| -rw-r--r-- | m4/dvdnav.m4 | 7 |
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" |
