summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2026-03-02 18:28:42 -0800
committerKhem Raj <raj.khem@gmail.com>2026-03-02 19:26:02 -0800
commit42ea269266486cba4c372e8ca63bfc8586567562 (patch)
treec9346b2e2c60ee881456cddc271b236367543e75 /meta-oe/recipes-extended
parent1e824240fbb59fc509ff89dd2da9c6fe2eb39afd (diff)
downloadmeta-openembedded-42ea269266486cba4c372e8ca63bfc8586567562.tar.gz
librelp: update PACKAGECONFIG setting related to valgrind
The riscv64 is now in COMPATIBLE_HOST of valgrind. The armv4/armv5/armv6 are not in COMPATIBLE_HOST of valgrind. Update the settings accordingly. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r--meta-oe/recipes-extended/rsyslog/librelp_1.12.0.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-oe/recipes-extended/rsyslog/librelp_1.12.0.bb b/meta-oe/recipes-extended/rsyslog/librelp_1.12.0.bb
index 6bad112e5a..260e4171a7 100644
--- a/meta-oe/recipes-extended/rsyslog/librelp_1.12.0.bb
+++ b/meta-oe/recipes-extended/rsyslog/librelp_1.12.0.bb
@@ -17,9 +17,12 @@ CVE_PRODUCT = "rsyslog:librelp"
17inherit autotools pkgconfig ptest 17inherit autotools pkgconfig ptest
18 18
19PACKAGECONFIG ?= "tls-openssl valgrind" 19PACKAGECONFIG ?= "tls-openssl valgrind"
20# Valgrind is not available for RISCV yet 20# Valgrind is not available for RISCV32 yet
21PACKAGECONFIG:remove:riscv64 = "valgrind"
22PACKAGECONFIG:remove:riscv32 = "valgrind" 21PACKAGECONFIG:remove:riscv32 = "valgrind"
22# armv4/armv5/armv6 is not in COMPATIBLE_HOST of valgrind
23PACKAGECONFIG:remove:armv4 = "valgrind"
24PACKAGECONFIG:remove:armv5 = "valgrind"
25PACKAGECONFIG:remove:armv6 = "valgrind"
23 26
24PACKAGECONFIG[tls] = "--enable-tls,--disable-tls,gnutls nettle" 27PACKAGECONFIG[tls] = "--enable-tls,--disable-tls,gnutls nettle"
25PACKAGECONFIG[tls-openssl] = "--enable-tls-openssl,--disable-tls-openssl,openssl" 28PACKAGECONFIG[tls-openssl] = "--enable-tls-openssl,--disable-tls-openssl,openssl"