From: Nikos Mavrogiannopoulos Date: Sat, 15 Jul 2017 16:09:18 +0000 (+0200) Subject: configure: do not utilize the -Wno-format-truncation gcc warning X-Git-Tag: gnutls_3_6_0~288 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ea30df3697d7ddf09c8594bf7db14d3af64db0f;p=thirdparty%2Fgnutls.git configure: do not utilize the -Wno-format-truncation gcc warning The warnings it produces have little value in our use of string functions. Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/configure.ac b/configure.ac index b41499c678..505b911de2 100644 --- a/configure.ac +++ b/configure.ac @@ -415,6 +415,7 @@ if test "$gl_gcc_warnings" = yes; then done gl_WARN_ADD([-Wno-missing-field-initializers]) # We need this one gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now + gl_WARN_ADD([-Wno-format-truncation]) # Many warnings with no point gl_WARN_ADD([-fdiagnostics-show-option]) fi