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/dvdnav.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/dvdnav.m4')
-rw-r--r-- | m4/dvdnav.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/dvdnav.m4 b/m4/dvdnav.m4 index 9254ca533..3371bdd2a 100644 --- a/m4/dvdnav.m4 +++ b/m4/dvdnav.m4 @@ -31,13 +31,13 @@ AC_DEFUN([AM_PATH_DVDNAV], dnl Get the cflags and libraries from the dvdnav-config script dnl AC_ARG_WITH(dvdnav-prefix, - AC_HELP_STRING([--with-dvdnav-prefix=DIR], [prefix where DVDNAV is installed (optional)]), + AS_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, - AC_HELP_STRING([--with-dvdnav-exec-prefix=DIR], [exec prefix where DVDNAV is installed (optional)]), + AS_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, - AC_HELP_STRING([--disable-dvdnavtest], [do not try to compile and run a test DVDNAV program]), + AS_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 |