# HG changeset patch # User truelight # Date 1192963264 0 # Node ID 2534b52bbc52dc15a0d71be0d73e2b90c88a689a # Parent 6a97c5cba126616dd46f90c90b7a6c7eb6afbece (svn r11323) -Fix: GCC2.95 gave a lot of bogus 'might be uninitialized', so never show them for this compiler diff -r 6a97c5cba126 -r 2534b52bbc52 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