summaryrefslogtreecommitdiffstats
path: root/m4/esd.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/esd.m4
parent6d02b7738beee2fa3ebe8247b4b92d47e613eef0 (diff)
various AC_HELP_STRING changes
Original commit message from CVS: various AC_HELP_STRING changes
Diffstat (limited to 'm4/esd.m4')
-rw-r--r--m4/esd.m420
1 files changed, 14 insertions, 6 deletions
diff --git a/m4/esd.m4 b/m4/esd.m4
index cbc6cec0..ea606dff 100644
--- a/m4/esd.m4
+++ b/m4/esd.m4
@@ -11,12 +11,20 @@ AC_DEFUN(AM_PATH_ESD,
[dnl
dnl Get the cflags and libraries from the esd-config script
dnl
-AC_ARG_WITH(esd-prefix,[ --with-esd-prefix=PFX Prefix where ESD is installed (optional)],
- esd_prefix="$withval", esd_prefix="")
-AC_ARG_WITH(esd-exec-prefix,[ --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)],
- esd_exec_prefix="$withval", esd_exec_prefix="")
-AC_ARG_ENABLE(esdtest, [ --disable-esdtest Do not try to compile and run a test ESD program],
- , enable_esdtest=yes)
+AC_ARG_WITH(esd-prefix,
+ AC_HELP_STRING([--with-esd-prefix=PFX],
+ [prefix where ESD is installed (optional)]),
+ esd_prefix="$withval", esd_prefix="")
+
+AC_ARG_WITH(esd-exec-prefix,
+ AC_HELP_STRING([--with-esd-exec-prefix=PFX],
+ [exec prefix where ESD is installed (optional)]),
+ esd_exec_prefix="$withval", esd_exec_prefix="")
+
+AC_ARG_ENABLE(esdtest,
+ AC_HELP_STRING([--disable-esdtest],
+ [do not try to compile and run a test ESD program]),
+ , enable_esdtest=yes)
if test x$esd_exec_prefix != x ; then
esd_args="$esd_args --exec-prefix=$esd_exec_prefix"