From: Peter Johnson Date: Thu, 13 Mar 2003 03:08:45 +0000 (-0000) Subject: Use AC_HELP_STRING() for custom argument help strings. X-Git-Tag: v0.2.0~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=107007d9bdd17d1a6d82c71064e8e44ffe66b374;p=yasm Use AC_HELP_STRING() for custom argument help strings. svn path=/trunk/yasm/; revision=845 --- diff --git a/configure.ac b/configure.ac index aa1c1ab8..7c1e5459 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AM_MAINTAINER_MODE # autoconf command-line options # AC_ARG_ENABLE(dev, -[ --enable-dev Enable full development build capability], +AC_HELP_STRING([--enable-dev],[Enable full development build capability]), [case "${enableval}" in yes) dev=true ;; no) dev=false ;; @@ -29,7 +29,7 @@ esac],[dev=false]) AM_CONDITIONAL(DEV, test x$dev = xtrue) AC_ARG_ENABLE(morewarn, -[ --enable-morewarn Enable lots of extra GCC warnings], +AC_HELP_STRING([--enable-morewarn],[Enable lots of extra GCC warnings]), [case "${enableval}" in yes) morewarn=true ;; no) morewarn=false ;; @@ -37,7 +37,7 @@ AC_ARG_ENABLE(morewarn, esac],[morewarn=false]) AC_ARG_ENABLE(warnerror, -[ --enable-warnerror Treat GCC warnings as errors], +AC_HELP_STRING([--enable-warnerror],[Treat GCC warnings as errors]), [case "${enableval}" in yes) warnerror=true ;; no) warnerror=false ;; @@ -45,7 +45,7 @@ AC_ARG_ENABLE(warnerror, esac],[warnerror=false]) AC_ARG_ENABLE(profiling, -[ --enable-profiling Enable profiling (requires GCC)], +AC_HELP_STRING([--enable-profiling],[Enable profiling (requires GCC)]), [case "${enableval}" in yes) profiling=true ;; no) profiling=false ;; @@ -53,7 +53,7 @@ AC_ARG_ENABLE(profiling, esac],[profiling=false]) AC_ARG_ENABLE(gcov, -[ --enable-gcov Enable gcov code coverage (requires GCC)], +AC_HELP_STRING([--enable-gcov],[Enable gcov code coverage (requires GCC)]), [case "${enableval}" in yes) gcov=true ;; no) gcov=false ;;