From 2571280d86294c8431e858a94a0cd3a0f51e0a98 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 15 Apr 2026 13:34:50 -0700 Subject: [PATCH] dhcp-relay: disable C23 support to fix configure check Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj --- meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb b/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb index 707eeb0e26..04fe9b9acd 100644 --- a/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb +++ b/meta-networking/recipes-connectivity/dhcp/dhcp-relay_4.4.3p1.bb @@ -39,7 +39,7 @@ BIND_EXTRA_CONFIG = "\ --host=${HOST_SYS} \ --target=${TARGET_SYS} \ " - +CACHED_CONFIGUREVARS += "ac_cv_prog_cc_c23=no" EXTRA_OECONF = "--with-bind-extra-config="${BIND_EXTRA_CONFIG}" \ --enable-paranoia \ --disable-static \