1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@debian.org>
Date: Mon, 5 Dec 2016 12:29:22 +0100
Subject: configure.ac help string cleanup
The [ defualt="no" ] branches were sense- and (mostly) harmless.
---
configure.ac | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/configure.ac b/configure.ac
index fa13ae6..bb8357c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -452,33 +452,27 @@ LINT_FLAGS="-weak -D__gnuc_va_list=va_list -D__attribute\(x\)= \
# local options
AC_ARG_ENABLE([ansi],
- [ --enable-ansi : force to build with ANSI standards. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-ansi],[force to build with ANSI standards])])
AC_ARG_ENABLE([fatal-warnings],
- [ --enable-fatal-warnings : enable fatal warnings. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-fatal-warnings],[enable fatal warnings])])
AC_ARG_ENABLE([debug],
- [ --enable-debug : enable debug build. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-debug],[enable debug build])])
AC_ARG_ENABLE([coverage],
- [ --enable-coverage : coverage analysis of the codebase. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-coverage],[coverage analysis of the codebase])])
AC_ARG_ENABLE([slow-tests],
- [ --enable-slow-tests : build and run slow tests. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-slow-tests],[build and run slow tests])])
if test x"$with_check" = xyes; then
AC_ARG_ENABLE([syslog-tests],
- [ --enable-syslog-tests : build and run syslog tests. ],
- [ default="no" ])
+ [AS_HELP_STRING([--enable-syslog-tests],[build and run syslog tests])])
fi
AC_ARG_WITH([socket-dir],
- [ --with-socket-dir=DIR : socket dir. ],
+ [AS_HELP_STRING([--with-socket-dir=DIR],[socket directory @<:@LOCALSTATEDIR/run@:>@])],
[ SOCKETDIR="$withval" ],
[ SOCKETDIR="$localstatedir/run" ])
|