From: Nikos Mavrogiannopoulos Date: Mon, 17 Sep 2012 17:46:29 +0000 (+0200) Subject: do not complain on overlength strings X-Git-Tag: gnutls_3_1_2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdc5ee28a5e7c4f4d55ac99a8371ca529482c164;p=thirdparty%2Fgnutls.git do not complain on overlength strings --- diff --git a/configure.ac b/configure.ac index 81b6e8a75e..48cc4dbae9 100644 --- a/configure.ac +++ b/configure.ac @@ -272,6 +272,7 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wconversion" # Too many warnings for now nw="$nw -Wsign-conversion" # Too many warnings for now nw="$nw -Wformat-y2k" # Too many warnings for now + 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 -Wunsafe-loop-optimizations"