summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2023-02-17 14:00:02 +0100
committerTim Rühsen <tim.ruehsen@gmx.de>2023-02-17 14:00:02 +0100
commitdcd2ed739ed5e0dfba3e9767bfa49f06e389f79e (patch)
treedf5bd938000e069eb257118ead0e1526ef2b81ff
parent24e876357ae62a1868c47e46b7657d9c302a3859 (diff)
downloadwget-dcd2ed739ed5e0dfba3e9767bfa49f06e389f79e.tar.gz
* configure.ac: Remove CC flags -Wc90-c99-compat and -Wlong-long
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 84aa48d7..aff89c1b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -396,6 +396,8 @@ if test -n "$WARN_CFLAGS"; then
nw="$nw -Wswitch-default" # TODO: Enable someday. Too noisy for now
nw="$nw -Wpedantic" # GCC 11. Too noisy, will never be supported
nw="$nw -Wnested-externs" # Stylistic choice and we do use it in hsts code
+ nw="$nw -Wc90-c99-compat" # gcc-12, we use C99
+ nw="$nw -Wlong-long" # gcc-12, we use C99
if test "$cross_compiling" = yes; then
nw="$nw -Wformat"
fi