summaryrefslogtreecommitdiffstats
path: root/libcsoap.m4
diff options
context:
space:
mode:
authorGravatar m0gg2006-06-18 10:15:02 +0000
committerGravatar m0gg2006-06-18 10:15:02 +0000
commitf29258bc61b1e13993cdc0336a8d0707d1536774 (patch)
tree10b29f92189f0a979d07b27db05a4c436cd138db /libcsoap.m4
parenta106abc6f551cc29bf71dffd74c658688eaf0e6f (diff)
downloadcsoap-f29258bc61b1e13993cdc0336a8d0707d1536774.tar.gz
csoap-f29258bc61b1e13993cdc0336a8d0707d1536774.tar.bz2
Use AC_HELP_STRING for configure --help
Diffstat (limited to 'libcsoap.m4')
-rw-r--r--libcsoap.m433
1 files changed, 24 insertions, 9 deletions
diff --git a/libcsoap.m4 b/libcsoap.m4
index 4954709..b865e40 100644
--- a/libcsoap.m4
+++ b/libcsoap.m4
@@ -7,15 +7,30 @@ dnl AM_PATH_CSOAP([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for CSOAP, and define CSOAP_CFLAGS and CSOAP_LIBS
dnl
AC_DEFUN([AM_PATH_CSOAP],[
-AC_ARG_WITH(csoap-prefix,
- [ --with-csoap-prefix=PFX Prefix where libcsoap is installed (optional)],
- csoap_config_prefix="$withval", csoap_config_prefix="")
-AC_ARG_WITH(csoap-exec-prefix,
- [ --with-csoap-exec-prefix=PFX Exec prefix where libcsoap is installed (optional)],
- csoap_config_exec_prefix="$withval", csoap_config_exec_prefix="")
-AC_ARG_ENABLE(csoaptest,
- [ --disable-csoaptest Do not try to compile and run a test LIBCSOAP program],,
- enable_csoaptest=yes)
+
+ AC_ARG_WITH(csoap-prefix,
+ AC_HELP_STRING(
+ [--with-csoap-prefix=PFX],
+ [Prefix where libcsoap is installed (optional)]
+ ),
+ csoap_config_prefix="$withval", csoap_config_prefix=""
+ )
+
+ AC_ARG_WITH(csoap-exec-prefix,
+ AC_HELP_STRING(
+ [--with-csoap-exec-prefix=PFX],
+ [Exec prefix where libcsoap is installed (optional)]
+ ),
+ csoap_config_exec_prefix="$withval", csoap_config_exec_prefix=""
+ )
+
+ AC_ARG_ENABLE(csoaptest,
+ AC_HELP_STRING(
+ [--disable-csoaptest],
+ [Do not try to compile and run a test cSOAP program]
+ ),,
+ enable_csoaptest=yes
+ )
if test x$csoap_config_exec_prefix != x ; then
csoap_config_args="$csoap_config_args --exec-prefix=$csoap_config_exec_prefix"