From: Jim Meyering Date: Sun, 20 Dec 2009 16:40:15 +0000 (+0100) Subject: build: quiet warnings from util.c X-Git-Tag: v1.4~18 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=957725f33b57664dc7cacd5d419e4b8538c74fe4;p=debian%2Fgzip build: quiet warnings from util.c * configure.ac (warnings): Add -Wno-overflow and -Wno-type-limits. --- diff --git a/configure.ac b/configure.ac index 6442ab6..7c9cda3 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,8 @@ if test "$gl_gcc_warnings" = yes; then gl_WARN_ADD([-Wno-sign-compare]) # Too many warnings for now gl_WARN_ADD([-Wno-pointer-sign]) # Too many warnings for now gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now + gl_WARN_ADD([-Wno-overflow]) # util.c + gl_WARN_ADD([-Wno-type-limits]) # util.c # In spite of excluding -Wlogical-op above, it is enabled, as of # gcc 4.5.0 20090517, and it provokes warnings in cat.c, dd.c, truncate.c