aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-06-21 07:44:28 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2017-06-22 19:27:16 +0200
commit7d1f53143e8eaeb25bae8979fb80dac57ddbf827 (patch)
tree2a82f6414e57700a62db8f326b840185a02cf439
parent62eddcdcd8c83c188e4f4b25367b0aa4cb57973d (diff)
configure.ac: Use -Werror in C(PP)FLAGS
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 535d1c3..b76545e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,8 +26,8 @@ PKG_PROG_PKG_CONFIG([0.20])
AC_CONFIG_MACRO_DIR([m4])
-CFLAGS+=" -Wall"
-CPPFLAGS+=" -Wall"
+CFLAGS+=" -Wall -Werror"
+CPPFLAGS+=" -Wall -Werror"
# The following test is taken from WebKit's webkit.m4
saved_CFLAGS="$CFLAGS"