| Message ID | 20260416055058.792189-8-khem.raj@oss.qualcomm.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-gnome,01/18] cheese: Require x11 distro feature | expand |
diff --git a/meta-networking/recipes-protocols/dante/dante_1.4.4.bb b/meta-networking/recipes-protocols/dante/dante_1.4.4.bb index 52cfba4c5f..6a1eed3edb 100644 --- a/meta-networking/recipes-protocols/dante/dante_1.4.4.bb +++ b/meta-networking/recipes-protocols/dante/dante_1.4.4.bb @@ -25,6 +25,8 @@ EXTRA_OECONF += "--without-gssapi --sbindir=${bindir}" DEPENDS += "flex-native bison-native libpam libtirpc" inherit autotools-brokensep features_check +CACHED_CONFIGUREVARS += "ac_cv_prog_cc_c23=no" + CPPFLAGS += "-P" CFLAGS += "-I${STAGING_INCDIR}/tirpc" LIBS += "-ltirpc" diff --git a/meta-networking/recipes-protocols/openflow/openflow_git.bb b/meta-networking/recipes-protocols/openflow/openflow_git.bb index 1588245f8a..d506dd4d01 100644 --- a/meta-networking/recipes-protocols/openflow/openflow_git.bb +++ b/meta-networking/recipes-protocols/openflow/openflow_git.bb @@ -40,6 +40,8 @@ DEPENDS:append:libc-musl = " libexecinfo" inherit autotools-brokensep pkgconfig +CACHED_CONFIGUREVARS += "ac_cv_prog_cc_c23=no" + do_configure:prepend() { ./boot.sh } diff --git a/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb b/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb index fd18ed7386..f87aa92932 100644 --- a/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb +++ b/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb @@ -32,6 +32,8 @@ file://COPYING.LGPL;md5=6e29c688d912da12b66b73e32b03d812" inherit autotools pkgconfig +CACHED_CONFIGUREVARS += "ac_cv_prog_cc_c23=no" + EXTRA_OEMAKE += "ROOTPREFIX=${root_prefix}" FILES:${PN} += "${nonarch_base_libdir}/firmware"
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 <khem.raj@oss.qualcomm.com> --- meta-networking/recipes-protocols/dante/dante_1.4.4.bb | 2 ++ meta-networking/recipes-protocols/openflow/openflow_git.bb | 2 ++ meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb | 2 ++ 3 files changed, 6 insertions(+)