summaryrefslogtreecommitdiffstats
path: root/m4/aalib.m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:08:14 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-05-27 20:08:14 +0000
commit605343fbd160881edfb250a06067e38d49ffd9e3 (patch)
tree924415176989af7a53d42fd58feb64827bbfcfcd /m4/aalib.m4
parentbc465f160cb8c2e6e7ca1a3b01b2a1483d635803 (diff)
no need for feature, it's in common various AC_HELP_STRING changes
Original commit message from CVS: no need for feature, it's in common various AC_HELP_STRING changes
Diffstat (limited to 'm4/aalib.m4')
-rw-r--r--m4/aalib.m421
1 files changed, 15 insertions, 6 deletions
diff --git a/m4/aalib.m4 b/m4/aalib.m4
index c40b8db8..906aabd8 100644
--- a/m4/aalib.m4
+++ b/m4/aalib.m4
@@ -1,4 +1,5 @@
# Configure paths for AALIB
+# touched up for clean output by Thomas Vander Stichele
# Jan Hubicka 4/22/2001
# stolen from Sam Lantinga 9/21/99
# stolen from Manish Singh
@@ -13,12 +14,20 @@ AC_DEFUN(AM_PATH_AALIB,
[dnl
dnl Get the cflags and libraries from the aalib-config script
dnl
-AC_ARG_WITH(aalib-prefix,[ --with-aalib-prefix=PFX Prefix where AALIB is installed (optional)],
- aalib_prefix="$withval", aalib_prefix="")
-AC_ARG_WITH(aalib-exec-prefix,[ --with-aalib-exec-prefix=PFX Exec prefix where AALIB is installed (optional)],
- aalib_exec_prefix="$withval", aalib_exec_prefix="")
-AC_ARG_ENABLE(aalibtest, [ --disable-aalibtest Do not try to compile and run a test AALIB program],
- , enable_aalibtest=yes)
+AC_ARG_WITH(aalib-prefix,
+ AC_HELP_STRING([--with-aalib-prefix=PFX],
+ [Prefix where AALIB is installed (optional)]),
+ aalib_prefix="$withval", aalib_prefix="")
+
+AC_ARG_WITH(aalib-exec-prefix,
+ AC_HELP_STRING([--with-aalib-exec-prefix=PFX],
+ [Exec prefix where AALIB is installed (optional)]),
+ aalib_exec_prefix="$withval", aalib_exec_prefix="")
+
+AC_ARG_ENABLE(aalibtest,
+ AC_HELP_STRING([--disable-aalibtest],
+ [Do not try to compile and run a test AALIB program]),
+ , enable_aalibtest=yes)
if test x$aalib_exec_prefix != x ; then
aalib_args="$aalib_args --exec-prefix=$aalib_exec_prefix"