diff options
| author | Michael Biebl <biebl@debian.org> | 2012-08-07 22:16:17 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2012-08-07 22:16:17 +0200 |
| commit | 44826499c23720be3d74ab674c4fd38912c5b8c2 (patch) | |
| tree | 613bec9c2242e5e0700bef1ba87ca2d25d755795 /m4 | |
| parent | 9a8ff86a032d1e4dd04238fcde856b145406df6f (diff) | |
| parent | 8c98b34228abb4dfde822ad89106b4d8b2287639 (diff) | |
Merge tag 'upstream/0.9.6.0' into experimental
Upstream version 0.9.6.0
Diffstat (limited to 'm4')
| -rw-r--r-- | m4/compiler_warnings.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/m4/compiler_warnings.m4 b/m4/compiler_warnings.m4 index eeacfae8..3037c584 100644 --- a/m4/compiler_warnings.m4 +++ b/m4/compiler_warnings.m4 @@ -11,7 +11,9 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then -Wdeclaration-after-statement \ -Wfloat-equal -Wno-unused-parameter -Wno-sign-compare \ -fno-strict-aliasing -Wno-unused-but-set-variable \ - -Wundef; do + -Wundef -Wimplicit-function-declaration \ + -Wpointer-arith -Winit-self \ + -Wmissing-include-dirs -Waggregate-return; do SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $option" AC_MSG_CHECKING([whether gcc understands $option]) |