From e509f30510db65b02673e2a75143a459dd0d2f30 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Thu, 2 May 2024 22:07:24 +0200 Subject: [PATCH] build: exclude deprecated decls from -Werror Other parts of the system can change (e.g. libc-ares), making things deprecated, and then our build fails for no reason inside FRR. This shouldn't be an error. Signed-off-by: David Lamparter --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index f11b345cf6..9f964a2f3e 100644 --- a/configure.ac +++ b/configure.ac @@ -453,6 +453,7 @@ fi AC_C_FLAG([-Wno-unused-parameter]) AC_C_FLAG([-Wno-missing-field-initializers]) AC_C_FLAG([-Wno-microsoft-anon-tag]) +AC_C_FLAG([-Wno-error=deprecated-declarations]) AC_C_FLAG([-Wc++-compat], [], [CXX_COMPAT_CFLAGS="-Wc++-compat"]) AC_SUBST([CXX_COMPAT_CFLAGS]) -- 2.39.5