diff options
author | Alex Kiernan <alex.kiernan@gmail.com> | 2025-06-14 09:26:36 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-20 10:34:11 -0700 |
commit | ede9e1799e56a8ccf6627a1db8cf4fe7a587ffd3 (patch) | |
tree | 10e990325518bbef45c4adf0e03f81091c72fc9e | |
parent | ac184d5f50bcb213ebcd2da1cfa3a0c680066d53 (diff) | |
download | meta-openembedded-ede9e1799e56a8ccf6627a1db8cf4fe7a587ffd3.tar.gz |
libcoap: Add PACKAGECONFIG[wolfssl]
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-devtools/libcoap/libcoap_4.3.5.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.5.bb b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.5.bb index 9e88b1af46..2793b900fe 100644 --- a/meta-networking/recipes-devtools/libcoap/libcoap_4.3.5.bb +++ b/meta-networking/recipes-devtools/libcoap/libcoap_4.3.5.bb | |||
@@ -23,13 +23,14 @@ PACKAGECONFIG ?= "\ | |||
23 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ | 23 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ |
24 | " | 24 | " |
25 | PACKAGECONFIG[async] = "--enable-async,--disable-async" | 25 | PACKAGECONFIG[async] = "--enable-async,--disable-async" |
26 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,,openssl mbedtls" | 26 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,,openssl mbedtls wolfssl" |
27 | PACKAGECONFIG[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,asciidoc-native doxygen-native graphviz-native" | 27 | PACKAGECONFIG[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,asciidoc-native doxygen-native graphviz-native" |
28 | PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,,gnutls openssl" | 28 | PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,,gnutls openssl wolfssl" |
29 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,,gnutls mbedtls" | 29 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,,gnutls mbedtls wolfssl" |
30 | PACKAGECONFIG[small-stack] = "--enable-small-stack,--disable-small-stack" | 30 | PACKAGECONFIG[small-stack] = "--enable-small-stack,--disable-small-stack" |
31 | PACKAGECONFIG[tcp] = "--enable-tcp,--disable-tcp" | 31 | PACKAGECONFIG[tcp] = "--enable-tcp,--disable-tcp" |
32 | PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,cunit" | 32 | PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,cunit" |
33 | PACKAGECONFIG[wolfssl] = "--with-wolfssl,--without-wolfssl,wolfssl,,,gnutls mbedtls openssl" | ||
33 | 34 | ||
34 | EXTRA_OECONF = "\ | 35 | EXTRA_OECONF = "\ |
35 | --with-epoll --enable-add-default-names \ | 36 | --with-epoll --enable-add-default-names \ |