From: Sujeet Nayak <[email protected]> Move gnutls from a hard dependency to a PACKAGECONFIG option, defaulting to gnutls. This allows users to select openssl as an alternative crypto library by setting PACKAGECONFIG.
Signed-off-by: Sujeet Nayak <[email protected]> --- meta-oe/recipes-support/libnice/libnice_0.1.22.bb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/libnice/libnice_0.1.22.bb b/meta-oe/recipes-support/libnice/libnice_0.1.22.bb index 175e10fdf6..5c5436dd8d 100644 --- a/meta-oe/recipes-support/libnice/libnice_0.1.22.bb +++ b/meta-oe/recipes-support/libnice/libnice_0.1.22.bb @@ -11,7 +11,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9c42325015702feda4f4d2f19a55b767 \ SRC_URI = "http://nice.freedesktop.org/releases/${BP}.tar.gz" SRC_URI[sha256sum] = "a5f724cf09eae50c41a7517141d89da4a61ec9eaca32da4a0073faed5417ad7e" -DEPENDS = "glib-2.0 gnutls ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'graphviz-native', '', d)}" +DEPENDS = "glib-2.0 ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'graphviz-native', '', d)}" + +PACKAGECONFIG ??= "gnutls" +PACKAGECONFIG[gnutls] = "-Dcrypto-library=gnutls,,gnutls" +PACKAGECONFIG[openssl] = "-Dcrypto-library=openssl,,openssl" PACKAGECONFIG[gupnp] = "-Dgupnp=enabled,-Dgupnp=disabled,gupnp" PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0"
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#125086): https://lists.openembedded.org/g/openembedded-devel/message/125086 Mute This Topic: https://lists.openembedded.org/mt/118259287/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
