summaryrefslogtreecommitdiff
path: root/m4/arts.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/arts.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/arts.m4')
-rw-r--r--m4/arts.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/arts.m4 b/m4/arts.m4
index 35f0370f9..ee320f32b 100644
--- a/m4/arts.m4
+++ b/m4/arts.m4
@@ -9,10 +9,10 @@ AC_DEFUN([AM_PATH_ARTS],
[dnl
dnl Get the cflags and libraries from the artsc-config script
dnl
-AC_ARG_WITH(arts-prefix,[ --with-arts-prefix=PFX Prefix where ARTS is installed (optional)],
+AC_ARG_WITH(arts-prefix, AC_HELP_STRING([--with-arts-prefix=DIR], [prefix where ARTS is installed (optional)]),
arts_prefix="$withval", arts_prefix="")
-AC_ARG_ENABLE(artstest, [ --disable-artstest Do not try to compile and run a test ARTS program],
- , enable_artstest=yes)
+AC_ARG_ENABLE(artstest, AC_HELP_STRING([--disable-artstest], [do not try to compile and run a test ARTS program]),
+ enable_artstest=$enableval, enable_artstest=yes)
if test x$arts_prefix != x ; then
arts_args="$arts_args --arts-prefix=$arts_prefix"