]> git.pond.sub.org Git - empserver/commitdiff
configure: Enable more gcc warnings
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 6 Jun 2015 15:46:56 +0000 (17:46 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 5 Dec 2015 11:11:37 +0000 (12:11 +0100)
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
configure.ac

index 64cea21a6f2d914d55434e7dded7d23d62dea268..11754f9caebd4cd1453b00bdd6d93d80d2d68bbc 100644 (file)
@@ -81,16 +81,30 @@ LIBS_server="$LIBS"
 ### Checks for typedefs, structures, and compiler characteristics
 
 # Enable useful warnings
-# clang needs to be tested with -Werror=unknown-warning-option
+# Some of them are commented out because the code needs cleanup first
+# Clang needs to be tested with -Werror=unknown-warning-option
 AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],
 [cflags_test="-Werror=unknown-warning-option"],
 [cflags_test=""])
 MY_APPEND_COMPILE_FLAGS([-Wall -Wextra dnl
+dnl -Wcast-align dnl
+dnl -Wconversion dnl
+-Wdeclaration-after-statement dnl
+dnl -Wformat-nonliteral dnl
+dnl -Wformat-security dnl
+-Winit-self dnl
+-Wlogical-op dnl
 -Wmissing-prototypes dnl
 -Wnested-externs dnl
+-Wold-style-definition dnl
+-Wpacked dnl
 -Wpointer-arith dnl
 -Wredundant-decls dnl
+dnl -Wshadow dnl
 -Wstrict-prototypes dnl
+dnl too prone to false positives: -Wsuggest-attribute=format dnl
+dnl -Wswitch-default dnl
+-Wundef dnl
 -Wno-unused-parameter dnl
 ], [], [$cflags_test])