diff mbox series

[meta-oe,105/128] poke: fix cross configure of bundled jitter

Message ID 20260628162222.4081517-5-khem.raj@oss.qualcomm.com
State New
Headers show
Series None | expand

Commit Message

Khem Raj June 28, 2026, 4:21 p.m. UTC
The bundled jitter sub-configure runs a gnulib AC_RUN_IFELSE strcasecmp
test that aborts under cross compilation use the cached result.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
---
 meta-oe/recipes-devtools/poke/poke_4.3.bb | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/meta-oe/recipes-devtools/poke/poke_4.3.bb b/meta-oe/recipes-devtools/poke/poke_4.3.bb
index 85b3c9b08d..5b80294697 100644
--- a/meta-oe/recipes-devtools/poke/poke_4.3.bb
+++ b/meta-oe/recipes-devtools/poke/poke_4.3.bb
@@ -20,6 +20,10 @@  EXTRA_OECONF = "--disable-gui \
                 --with-libreadline-prefix=${STAGING_INCDIR} \
                 "
 
+# The bundled jitter sub-configure runs a gnulib AC_RUN_IFELSE test for
+# strcasecmp which aborts under cross compilation; provide the cached result.
+CACHED_CONFIGUREVARS += "gl_cv_func_strcasecmp_works=yes"
+
 PACKAGECONFIG[mi] = "--enable-mi,--disable-mi,json-c"
 
 PACKAGES =+ "${PN}-emacs ${PN}-vim"