Revert "configure.ac: Use -Werror in C(PP)FLAGS"

As discussed in chat, -Werror should not be enabled by default.
Instead it should be added in our jenkins build scripts.

This reverts commit 7d1f53143e.

Change-Id: Ied6e21b72b24fcb623fd945ed9560b742a8eedf5
This commit is contained in:
Neels Hofmeyr 2017-06-22 18:44:45 +00:00
parent 7d1f53143e
commit c633cfbb91
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ PKG_PROG_PKG_CONFIG([0.20])
AC_CONFIG_MACRO_DIR([m4])
CFLAGS+=" -Wall -Werror"
CPPFLAGS+=" -Wall -Werror"
CFLAGS+=" -Wall"
CPPFLAGS+=" -Wall"
# The following test is taken from WebKit's webkit.m4
saved_CFLAGS="$CFLAGS"