From: Taylor R Campbell Date: Wed, 7 Nov 2018 07:40:12 +0000 (+0000) Subject: Turn off -Werror here; breaks configure. X-Git-Tag: mit-scheme-pucked-10.1.2~16^2~116^2~32 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=640ebdec9220e072e27d839614c5f17f92d0ea4f;p=mit-scheme.git Turn off -Werror here; breaks configure. Should turn it back on somewhere else. --- diff --git a/src/microcode/configure.ac b/src/microcode/configure.ac index 0ad78b8c0..337c9ea96 100644 --- a/src/microcode/configure.ac +++ b/src/microcode/configure.ac @@ -208,7 +208,7 @@ if test ${GCC} = yes; then CFLAGS="-O0 -g -DENABLE_DEBUGGING_TOOLS ${CFLAGS}" LDFLAGS="${LDFLAGS} -g" fi - CFLAGS="-Wall -Werror -Wundef -Wpointer-arith -Winline ${CFLAGS}" + CFLAGS="-Wall -Wundef -Wpointer-arith -Winline ${CFLAGS}" CFLAGS="-Wstrict-prototypes -Wnested-externs -Wredundant-decls ${CFLAGS}" AC_MSG_CHECKING([for GCC>=4])