From: Ondrej Zajicek Date: Tue, 4 Nov 2008 13:52:47 +0000 (+0100) Subject: These warnings are so abundant (because char * / byte * mix) that they X-Git-Tag: v1.2.0~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baa9ef18c62612bd91a8362ef20427046105c113;p=thirdparty%2Fbird.git These warnings are so abundant (because char * / byte * mix) that they are completely useless. --- diff --git a/configure.in b/configure.in index 7a4674d3d..44d55c904 100644 --- a/configure.in +++ b/configure.in @@ -62,7 +62,7 @@ if test "$ac_test_CFLAGS" != set ; then else WARNS=" -Wno-unused" fi - CFLAGS="$CFLAGS -Wall -W -Wstrict-prototypes -Wno-parentheses$WARNS" + CFLAGS="$CFLAGS -Wall -W -Wstrict-prototypes -Wno-pointer-sign -Wno-parentheses$WARNS" fi if test "$with_sysinclude" != no -a -n "$with_sysinclude"; then CPPFLAGS="$CPPFLAGS -I$with_sysinclude"