From: Sam James Date: Wed, 7 Feb 2024 02:12:35 +0000 (+0000) Subject: Makefile.am: don't silence -Wimplicit-function-declaration X-Git-Tag: v1.1.0~111 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=02466e17e8cca5f97757092094c0600cedce09e2;p=thirdparty%2Fnftables.git Makefile.am: don't silence -Wimplicit-function-declaration This becomes an error in GCC 14 and Clang 16. It's a common misconception that these warnings are invalid or simply noise for Bison/parser files, but even if that were true, we'd need to handle it somehow anyway. Silencing them does nothing, so stop doing that. Further, I don't actually get any warnings to fix with bison-3.8.2. This mirrors changes we've done in other netfilter.org projects. Signed-off-by: Sam James Signed-off-by: Phil Sutter --- diff --git a/Makefile.am b/Makefile.am index 0ed831a1..688a9849 100644 --- a/Makefile.am +++ b/Makefile.am @@ -170,7 +170,6 @@ src_libparser_la_SOURCES = \ src_libparser_la_CFLAGS = \ $(AM_CFLAGS) \ - -Wno-implicit-function-declaration \ -Wno-missing-declarations \ -Wno-missing-prototypes \ -Wno-nested-externs \