(svn r11323) -Fix: GCC2.95 gave a lot of bogus 'might be uninitialized', so never show them for this compiler
authortruelight
Sun, 21 Oct 2007 10:41:04 +0000
changeset 8270 283df55c9ecd
parent 8269 6f5f0490eb77
child 8271 393440621fb9
(svn r11323) -Fix: GCC2.95 gave a lot of bogus 'might be uninitialized', so never show them for this compiler
config.lib
--- a/config.lib	Sun Oct 21 09:59:10 2007 +0000
+++ b/config.lib	Sun Oct 21 10:41:04 2007 +0000
@@ -805,6 +805,7 @@
 	if [ $cc_version -ge 29 ]; then
 		CFLAGS="$CFLAGS -Wall -Wno-multichar -Wsign-compare -Wundef"
 		CFLAGS="$CFLAGS -Wwrite-strings -Wpointer-arith"
+		CFLAGS="$CFLAGS -Wno-uninitialized"
 
 		CC_CFLAGS="$CC_CFLAGS -Wstrict-prototypes"
 	fi