summaryrefslogtreecommitdiff
path: root/m4/caca.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/caca.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/caca.m4')
-rw-r--r--m4/caca.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/m4/caca.m4 b/m4/caca.m4
index 269f69f22..5e8c27a19 100644
--- a/m4/caca.m4
+++ b/m4/caca.m4
@@ -14,13 +14,14 @@ AC_DEFUN([AM_PATH_CACA],
[dnl
dnl
AC_ARG_WITH(caca-prefix,
- [ --with-caca-prefix=PFX Prefix where CACA is installed (optional)],
+ AC_HELP_STRING([--with-caca-prefix=DIR], [prefix where CACA is installed (optional)]),
caca_config_prefix="$withval", caca_config_prefix="")
AC_ARG_WITH(caca-exec-prefix,
- [ --with-caca-exec-prefix=PFX Exec prefix where CACA is installed (optional)],
+ AC_HELP_STRING([--with-caca-exec-prefix=DIR], [exec prefix where CACA is installed (optional)]),
caca_config_exec_prefix="$withval", caca_config_exec_prefix="")
AC_ARG_ENABLE(cacatest,
- [ --disable-cacatest Do not try to compile and run a test CACA program],, enable_cacatest=yes)
+ AC_HELP_STRING([--disable-cacatest], [do not try to compile and run a test CACA program]),
+ enable_cacatest=$enableval, enable_cacatest=yes)
if test x$caca_config_exec_prefix != x ; then
caca_config_args="$caca_config_args --exec-prefix=$caca_config_exec_prefix"