Skip to content
Snippets Groups Projects
Commit e1de00cd authored by Francesco Pham's avatar Francesco Pham
Browse files

libcoap: Fix gnutls/openssl/mbedtls PACKAGECONFIG conflicts


These were missing a comma so were being added as RRECOMMENDS.

Original patch is from Alex Kiernan <alex.kiernan@gmail.com>.
Upstream commit in meta-openembedded:
    3589aa5debbf59e940588939dd913130e4cfd4cd 
    ("libcoap: Fix gnutls/openssl/mbedtls PACKAGECONFIG conflicts")

Importing the patch because the recipe is not present in 
kirkstone branch but only in master branch of meta-openembedded.

Signed-off-by: default avatarAlex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: default avatarKhem Raj <raj.khem@gmail.com>
Signed-off-by: default avatarFrancesco Pham <francesco.pham@huawei.com>
parent de5426dd
No related branches found
No related tags found
1 merge request!226use libcoap recipe from upstream
......@@ -23,10 +23,10 @@ PACKAGECONFIG ?= "\
${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \
"
PACKAGECONFIG[async] = "--enable-async,--disable-async"
PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,openssl mbedtls"
PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls,,,openssl mbedtls"
PACKAGECONFIG[manpages] = "--enable-documentation --enable-doxygen --enable-manpages,--disable-documentation,asciidoc-native doxygen-native graphviz-native"
PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,gnutls openssl"
PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,gnutls mbedtls"
PACKAGECONFIG[mbedtls] = "--with-mbedtls,--without-mbedtls,mbedtls,,,gnutls openssl"
PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,,,gnutls mbedtls"
PACKAGECONFIG[small-stack] = "--enable-small-stack,--disable-small-stack"
PACKAGECONFIG[tcp] = "--enable-tcp,--disable-tcp"
PACKAGECONFIG[tests] = "--enable-tests,--disable-tests,cunit"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment