From: Sebastian Harl Date: Thu, 15 Oct 2009 22:19:28 +0000 (+0200) Subject: configure.ac: Improved help texts of arguments. X-Git-Url: https://git.tokkee.org/?p=template.git;a=commitdiff_plain;h=d5d5a96d81e5fafbc436913f2adb1fe018ce4348 configure.ac: Improved help texts of arguments. --- diff --git a/configure.ac b/configure.ac index 6cc54b0..ebc231c 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ test_cc_flags() { dnl Optionally stick to standard C99 and POSIX.1 2001 as close as possible. AC_ARG_ENABLE([standards], AS_HELP_STRING([--enable-standards], - [Enable standards compliance mode]), + [enable standards compliance mode @<:@default=no@:>@]), [enable_standards="$enableval"], [enable_standards="no"]) @@ -66,7 +66,7 @@ AC_DEFINE([_FORTIFY_SOURCE], 2, [Define to enable protection against static sized buffer overflows.]) AC_ARG_ENABLE([hardening], AS_HELP_STRING([--disable-hardening], - [Disable hardening options]), + [disable hardening options @<:@default=yes@:>@]), [enable_hardening="$enableval"], [enable_hardening="yes"]) @@ -94,7 +94,7 @@ fi dnl Strict checking for potential problems. AC_ARG_ENABLE([strict-checks], AS_HELP_STRING([--disable-strict-checks], - [Disable strict compiler checks]), + [disable strict compiler checks @<:@default=yes@:>@]), [enable_strict_checks="$enableval"], [enable_strict_checks="yes"])