From: Nikos Mavrogiannopoulos Date: Fri, 29 May 2015 12:39:58 +0000 (+0200) Subject: silence format-signness warnings in gcc5 X-Git-Tag: gnutls_3_4_2~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d063057c03415e85f4113b497b37cd494e1817c4;p=thirdparty%2Fgnutls.git silence format-signness warnings in gcc5 --- diff --git a/configure.ac b/configure.ac index 3f7ec24943..7334b9378b 100644 --- a/configure.ac +++ b/configure.ac @@ -306,6 +306,7 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Woverlength-strings" # We use some in tests/ nw="$nw -Wvla" # There is no point to avoid C99 variable length arrays nw="$nw -Wformat-nonliteral" # Incompatible with gettext _() + nw="$nw -Wformat-signedness" # Too many to handle nw="$nw -Wstrict-overflow" nw="$nw -Wmissing-noreturn" nw="$nw -Winline" # Too compiler dependent