From ff04ea8b436b43ce37ea129c870729d0c2829991 Mon Sep 17 00:00:00 2001 From: John Audia Date: Sun, 1 Jun 2025 08:44:16 -0400 Subject: [PATCH] tcp_wrappers: fix building with GCC 15.1 Force the default C version to -std=gnu17. Signed-off-by: John Audia --- libs/tcp_wrappers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/tcp_wrappers/Makefile b/libs/tcp_wrappers/Makefile index 400968fd3d..df0b90503b 100644 --- a/libs/tcp_wrappers/Makefile +++ b/libs/tcp_wrappers/Makefile @@ -31,7 +31,7 @@ define Package/libwrap MAINTAINER:=Peter Wagner endef -TARGET_CFLAGS += $(FPIC) -Wall +TARGET_CFLAGS += $(FPIC) -Wall -std=gnu17 define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ -- 2.30.2