summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-01-15 21:22:34 +0100
committerJelmer Vernooij <jelmer@samba.org>2009-01-15 21:22:34 +0100
commitda656c2e87708daf2276ad4f091452c9ec411053 (patch)
treeb95df26dce7b6cc5d2507fad6a10982f04b02129
parent0cbce777a3406804780e9fa1c983f22e53b3cfeb (diff)
downloadsamba-da656c2e87708daf2276ad4f091452c9ec411053.tar.gz
samba-da656c2e87708daf2276ad4f091452c9ec411053.tar.xz
samba-da656c2e87708daf2276ad4f091452c9ec411053.zip
Use AS_HELP_STRING() in a couple more places.
-rw-r--r--source4/lib/smbreadline/readline.m42
-rw-r--r--source4/smbd/process_model.m44
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/smbreadline/readline.m4 b/source4/lib/smbreadline/readline.m4
index ad6bc66690c..86e2fb19d65 100644
--- a/source4/lib/smbreadline/readline.m4
+++ b/source4/lib/smbreadline/readline.m4
@@ -6,7 +6,7 @@ EXTERNAL_READLINE=no
# test for where we get readline() from
AC_MSG_CHECKING(whether to use readline)
AC_ARG_WITH(readline,
-[ --with-readline[=DIR] Look for readline include/libs in DIR (default=auto) ],
+[AS_HELP_STRING([--with-readline[=DIR]], [Look for readline include/libs in DIR (default=auto)])],
[ case "$with_readline" in
yes)
AC_MSG_RESULT(yes)
diff --git a/source4/smbd/process_model.m4 b/source4/smbd/process_model.m4
index 6ee8dbf4d8f..b2265bdac92 100644
--- a/source4/smbd/process_model.m4
+++ b/source4/smbd/process_model.m4
@@ -6,7 +6,7 @@ SMB_ENABLE(process_model_thread,NO)
# check for pthread support
AC_MSG_CHECKING(whether to use pthreads)
AC_ARG_WITH(pthreads,
-[ --with-pthreads Include pthreads (default=no) ],
+[AS_HELP_STRING([--with-pthreads],[Include pthreads (default=no)])],
[ case "$withval" in
yes)
AC_MSG_RESULT(yes)
@@ -27,7 +27,7 @@ SMB_EXT_LIB(PTHREAD,[-lpthread])
AC_MSG_CHECKING(whether to search for setproctitle support)
AC_ARG_WITH(setproctitle,
-[ --with-setproctitle Search for setproctitle support (default=no)],
+[AS_HELP_STRING([--with-setproctitle], [Search for setproctitle support (default=no)])],
[ case "$withval" in
yes)
AC_MSG_RESULT(yes)