From ccf6e48a5284949630c65adc6fd8838b5da92e5d Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Mon, 4 Feb 2013 09:51:40 +0200 Subject: [PATCH] Don't use -Werror by default It may be problematic when compilers add new warnings over time. ./configure && make should always just work. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 9306402..9221cd1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,5 +11,5 @@ pkgconfig_DATA = jansson.pc if GCC # These flags are gcc specific -export AM_CFLAGS = -Wall -Wextra -Wdeclaration-after-statement -Werror +export AM_CFLAGS = -Wall -Wextra -Wdeclaration-after-statement endif