configure: Disable -Wmaybe-uninitialized by default

It is by definition unreliable and causes pointless noise on valid
code.
This commit is contained in:
Luca Barbato 2013-10-26 21:27:48 +02:00
parent 0b357a8095
commit de6061203e
1 changed files with 1 additions and 0 deletions

1
configure vendored
View File

@ -3907,6 +3907,7 @@ check_cflags -Wundef
check_cflags -Wmissing-prototypes check_cflags -Wmissing-prototypes
check_cflags -Wstrict-prototypes check_cflags -Wstrict-prototypes
enabled extra_warnings && check_cflags -Winline enabled extra_warnings && check_cflags -Winline
enabled extra_warnings || check_cflags -Wno-maybe-uninitialized
# add some linker flags # add some linker flags
check_ldflags -Wl,--warn-common check_ldflags -Wl,--warn-common