diff options
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8241b55db..3c4681c57 100644 --- a/configure.ac +++ b/configure.ac @@ -121,6 +121,8 @@ if test "$gl_gcc_warnings" = yes; then gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now gl_WARN_ADD([-Wsuggest-attribute=const]) gl_WARN_ADD([-Wsuggest-attribute=noreturn]) + gl_WARN_ADD([-Wno-format-nonliteral]) + gl_WARN_ADD([-Wno-unsuffixed-float-constants]) # Enable this warning only with gcc-4.7 and newer. With 4.6.1 20110824, # it suggests test.c's advance function may be pure, even though it @@ -151,6 +153,9 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wunused-macros" nw="$nw -Wmissing-prototypes" nw="$nw -Wold-style-definition" + # FIXME: it may be easy to remove this, since it affects only one file: + # the snprintf call at ftoastr.c:132. + nw="$nw -Wdouble-promotion" # FIXME: remove/reenable the following two, once gnulib is adjusted. nw="$nw -Wsuggest-attribute=const" nw="$nw -Wsuggest-attribute=pure" |