From 4ea30df3697d7ddf09c8594bf7db14d3af64db0f Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sat, 15 Jul 2017 18:09:18 +0200 Subject: 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 --- configure.ac | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.1