0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-18 09:58:22 +02:00

configure.ac: Improve some output message wording.

This commit is contained in:
Jason Volk 2018-05-17 17:37:04 -07:00
parent 73126e96d7
commit 4bd78e78b4

View file

@ -143,7 +143,7 @@ dnl
dnl Debugging mode dnl Debugging mode
dnl dnl
AC_MSG_CHECKING(if you want to enable debugging) AC_MSG_CHECKING(whether to enable debugging)
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging suite for development.]), AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging suite for development.]),
[ [
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
@ -159,7 +159,7 @@ AM_CONDITIONAL([DEBUG], [[[[ "$DEBUG" = "1" ]]]])
dnl Explicit assert switch for still using assert() without --enable-debug dnl Explicit assert switch for still using assert() without --enable-debug
AC_MSG_CHECKING(if you want to explicitly enable assertions) AC_MSG_CHECKING(whether to explicitly enable assertions)
AC_ARG_ENABLE(assert, AC_HELP_STRING([--enable-assert], [Enable assertions without --enable-debug]), AC_ARG_ENABLE(assert, AC_HELP_STRING([--enable-assert], [Enable assertions without --enable-debug]),
[ [
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
@ -186,7 +186,7 @@ AM_COND_IF(ASSERT,
dnl Explicit optimize switch for enabling optimization when using --enable-debug dnl Explicit optimize switch for enabling optimization when using --enable-debug
AC_MSG_CHECKING(if you want to explicitly enable optimized build) AC_MSG_CHECKING(whether to explicitly enable optimized build)
AC_ARG_ENABLE(optimize, AC_HELP_STRING([--enable-optimize], [Enable optimization even with --enable-debug]), AC_ARG_ENABLE(optimize, AC_HELP_STRING([--enable-optimize], [Enable optimization even with --enable-debug]),
[ [
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
@ -209,7 +209,7 @@ dnl
dnl Profiling mode dnl Profiling mode
dnl dnl
AC_MSG_CHECKING(if you want to do a profile build) AC_MSG_CHECKING(whether to do a profile build)
AC_ARG_ENABLE(profile, AC_HELP_STRING([--enable-profile], [Enable profiling]), AC_ARG_ENABLE(profile, AC_HELP_STRING([--enable-profile], [Enable profiling]),
[ [
if test "$ac_cv_c_compiler_gnu" = yes; then if test "$ac_cv_c_compiler_gnu" = yes; then
@ -227,7 +227,7 @@ dnl
dnl Precompiled headers dnl Precompiled headers
dnl dnl
AC_MSG_CHECKING(if you want to disable precompiled headers) AC_MSG_CHECKING(whether to disable precompiled headers)
AC_ARG_ENABLE(pch, AC_HELP_STRING([--disable-pch], [Disable precompiled header generation]), AC_ARG_ENABLE(pch, AC_HELP_STRING([--disable-pch], [Disable precompiled header generation]),
[ [
build_pch="no" build_pch="no"
@ -301,7 +301,7 @@ dnl
STACK_USAGE_WARNING=16384 STACK_USAGE_WARNING=16384
FRAME_SIZE_WARNING=8192 FRAME_SIZE_WARNING=8192
CWARNS="" CWARNS=""
AC_MSG_CHECKING(if you want to disable warnings) AC_MSG_CHECKING(whether to disable warnings)
AC_ARG_ENABLE(warnings, AC_ARG_ENABLE(warnings,
AC_HELP_STRING([--disable-warnings],[Disable all sorts of warnings like a rockstar]), AC_HELP_STRING([--disable-warnings],[Disable all sorts of warnings like a rockstar]),
[], [],