* configure.ac: Remove CC flags -Wc90-c99-compat and -Wlong-long

This commit is contained in:
Tim Rühsen
2023-02-17 14:00:02 +01:00
parent 24e876357a
commit dcd2ed739e

View File

@@ -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