summaryrefslogtreecommitdiffstats
path: root/m4/as-arts.m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:37:17 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:37:17 +0000
commitea003f663a78858145940d9b363912d57a953bed (patch)
treee1c96a182d2b2e432f20dceef9603a6053e29163 /m4/as-arts.m4
parent6d02b7738beee2fa3ebe8247b4b92d47e613eef0 (diff)
various AC_HELP_STRING changes
Original commit message from CVS: various AC_HELP_STRING changes
Diffstat (limited to 'm4/as-arts.m4')
-rw-r--r--m4/as-arts.m420
1 files changed, 14 insertions, 6 deletions
diff --git a/m4/as-arts.m4 b/m4/as-arts.m4
index 2d628199..92b070b7 100644
--- a/m4/as-arts.m4
+++ b/m4/as-arts.m4
@@ -11,12 +11,20 @@ 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)],
- arts_prefix="$withval", arts_prefix="")
-AC_ARG_WITH(arts-exec-prefix,[ --with-arts-exec-prefix=PFX Exec prefix where ARTS is installed (optional)],
- arts_exec_prefix="$withval", arts_exec_prefix="")
-AC_ARG_ENABLE(artstest, [ --disable-artstest Do not try to compile and run a test ARTS program],
- , enable_artstest=yes)
+AC_ARG_WITH(arts-prefix,
+ AC_HELP_STRING([--with-arts-prefix=PFX],
+ [prefix where ARTS is installed (optional)]),
+ arts_prefix="$withval", arts_prefix="")
+
+AC_ARG_WITH(arts-exec-prefix,
+ AC_HELP_STRING([--with-arts-exec-prefix=PFX],
+ [exec prefix where ARTS is installed (optional)]),
+ arts_exec_prefix="$withval", arts_exec_prefix="")
+
+AC_ARG_ENABLE(artstest,
+ AC_HELP_STRING([--disable-artstest],
+ [do not try to compile and run a test ARTS program]),
+ , enable_artstest=yes)
if test x$arts_exec_prefix != x ; then
arts_args="$arts_args --exec-prefix=$arts_exec_prefix"