# 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 ;;
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 ;;
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 ;;
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 ;;
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 ;;