Don't use -Werror by default

It may be problematic when compilers add new warnings over time.
./configure && make should always just work.
This commit is contained in:
Petri Lehtinen 2013-02-04 09:51:40 +02:00
parent 93a3c7f663
commit ccf6e48a52

View File

@ -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