]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
do not complain on overlength strings
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Mon, 17 Sep 2012 17:46:29 +0000 (19:46 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Mon, 17 Sep 2012 17:56:18 +0000 (19:56 +0200)
configure.ac

index 81b6e8a75e8fe483026ca801c807754ff5e70208..48cc4dbae93fbd4599d871494fa089632043453b 100644 (file)
@@ -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"