summaryrefslogtreecommitdiff
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
commit139c5624923fe3f06abc1b9bf36a160ca0090a17 (patch)
treeb82220d1db8ef0385464c7eb9e0be7fd526b5cd4 /m4/aalib.m4
parent796709105da5a0ad3237acdde0b5b4a3020ce759 (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 c40b8db86..906aabd82 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"