]> git.saurik.com Git - bison.git/commitdiff
maint: fix --gcc-warnings support.
authorAkim Demaille <demaille@gostai.com>
Wed, 25 Jan 2012 12:04:43 +0000 (13:04 +0100)
committerAkim Demaille <demaille@gostai.com>
Thu, 26 Jan 2012 20:29:50 +0000 (21:29 +0100)
* configure.ac: Use enable_gcc_warnings instead of enableval,
which is valid only with AC_ARG_ENABLE.
(cherry picked from commit 1890a2a816dab86c23cc1d0af8fac3986335deb7)

Conflicts:

configure.ac

configure.ac

index bdb2504fe2e5e9cedc31adbd09c1be103b0d3873..1fffa67cd461f7b25be5666116678034b2f5ea3b 100644 (file)
@@ -57,14 +57,14 @@ AC_PROG_CC_STDC
 # Gnulib (early checks).
 gl_EARLY
 
-AC_ARG_ENABLE(gcc-warnings,
+AC_ARG_ENABLE([gcc-warnings],
 [  --enable-gcc-warnings   turn on lots of GCC warnings (not recommended)],
-[case "${enableval}" in
+[case $enable_gcc_warnings in
    yes|no) ;;
-   *)      AC_MSG_ERROR([bad value ${enableval} for gcc-warnings option]) ;;
+   *)  AC_MSG_ERROR([invalid value for --gcc-warnings: $enable_gcc_warnings]);;
  esac],
-             [enableval=no])
-if test "${enableval}" = yes; then
+              [enable_gcc_warnings=no])
+if test "$enable_gcc_warnings" = yes; then
   gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
   AC_SUBST([WERROR_CFLAGS])
   gl_WARN_ADD([-Wall])