diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-08-15 14:25:05 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-08-15 14:25:05 +0200 |
commit | 8baf83a1170d00dec1ff6b91ab6b66bb3eb064df (patch) | |
tree | 10f653cdddac3fd2314d67bb78e7317cb4c0f6b3 | |
parent | abc90e7c5d560973912ea736628d31ead1fe3d5e (diff) | |
download | conntrack-tools-8baf83a1170d00dec1ff6b91ab6b66bb3eb064df.tar.gz conntrack-tools-8baf83a1170d00dec1ff6b91ab6b66bb3eb064df.zip |
compilation: relax too strict warning checking
This patch removes the -Werror option during the compilation. Some users
have reported problems related to the code generated by flex and bison.
This results in useless reports and a bad experience for end-users.
Ideally, it would be great to have something like 'autoconf prettify'
for less verbose output.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | Make_global.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Make_global.am b/Make_global.am index 3ff531f..2eeb886 100644 --- a/Make_global.am +++ b/Make_global.am @@ -1,6 +1,5 @@ INCLUDES=$(all_includes) -I$(top_srcdir)/include AM_CFLAGS = -std=gnu99 -W -Wall \ - -Werror \ -Wmissing-prototypes -Wwrite-strings -Wcast-qual -Wfloat-equal -Wshadow -Wpointer-arith -Wbad-function-cast -Wsign-compare -Waggregate-return -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wstrict-prototypes -Wundef \ -Wno-unused-parameter |