diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:08:14 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-05-27 20:08:14 +0000 |
commit | 8aa4f5c7a2fc05380d231b6a38e7bec4cf51b82b (patch) | |
tree | 9e9bee0e3b435590271c9265944afe37416efcf4 /m4/aalib.m4 | |
parent | f5a8b5bf36d14829e484ad106e1d459d64619f70 (diff) | |
download | gstreamer-plugins-bad-8aa4f5c7a2fc05380d231b6a38e7bec4cf51b82b.tar.gz |
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.m4 | 21 |
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" |