From 9954723208043bd37de987a9f9a6f73abe307bc3 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 15 Apr 2026 13:38:55 -0700 Subject: [PATCH] ruli: disable C23 support to fix build Avoid potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj --- meta-networking/recipes-support/ruli/ruli_0.36.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-networking/recipes-support/ruli/ruli_0.36.bb b/meta-networking/recipes-support/ruli/ruli_0.36.bb index 0526f842a8..972184ae2c 100644 --- a/meta-networking/recipes-support/ruli/ruli_0.36.bb +++ b/meta-networking/recipes-support/ruli/ruli_0.36.bb @@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "11d32def5b514748fbd9ea8c88049ae99e1bb358efc74eb91a4d268a39 # -shared is passed via CFLAGS, clang complains since its used during linking # and not compiling -CFLAGS:append:toolchain-clang = " -Wno-error=unused-command-line-argument" +CFLAGS:append:toolchain-clang = " -std=gnu11 -Wno-error=unused-command-line-argument" EXTRA_OEMAKE = 'CC="${CC}" CPPFLAGS="${CFLAGS}" OOP_BASE_DIR="${STAGING_EXECPREFIXDIR}" \ INSTALL_BASE_DIR="${D}${exec_prefix}" \