diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2015-03-18 18:09:08 +0100 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2015-03-19 11:48:49 +0100 |
commit | 37f13c5375ffd95c0c00e80db1304ee87bab8106 (patch) | |
tree | 72436501ea78ac3e8f82fed15e8b292520550c8e /m4 | |
parent | 50e9248bd2d05e912ad546436b28c2db5802436c (diff) |
build: disable warnings where macros expand to tautological comparisons
Diffstat (limited to 'm4')
-rw-r--r-- | m4/compiler_warnings.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/compiler_warnings.m4 b/m4/compiler_warnings.m4 index 412acb975..05bc9a066 100644 --- a/m4/compiler_warnings.m4 +++ b/m4/compiler_warnings.m4 @@ -29,7 +29,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then -fno-strict-aliasing -Wno-unused-but-set-variable \ -Wundef -Wimplicit-function-declaration \ -Wpointer-arith -Winit-self \ - -Wmissing-include-dirs; do + -Wmissing-include-dirs -Wno-pragmas; do dnl GCC 4.4 does not warn when checking for -Wno-* flags (https://gcc.gnu.org/wiki/FAQ#wnowarning) CFLAGS="$CFLAGS_MORE_WARNINGS $CFLAGS_EXTRA $(printf '%s' "$option" | sed 's/^-Wno-/-W/') $CFLAGS_SAVED" AC_MSG_CHECKING([whether gcc understands $option]) |