diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-12-13 11:17:01 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-12-13 21:20:02 -0800 |
commit | 7a4b372b394f6ee89e495cfc33e05668594d7da2 (patch) | |
tree | 0e9048bbe886defcfa4af48496d03e1857228df8 /meta-multimedia | |
parent | fe5b334cda2b9a8cc4aeb37eb67206ca903b041b (diff) | |
download | meta-openembedded-7a4b372b394f6ee89e495cfc33e05668594d7da2.tar.gz |
gssdp: Use sniffer only when gnome layer is in mix
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r-- | meta-multimedia/recipes-connectivity/gupnp/gssdp_1.4.0.1.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.4.0.1.bb b/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.4.0.1.bb index 056ea83aa..97b0bbd28 100644 --- a/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.4.0.1.bb +++ b/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.4.0.1.bb | |||
@@ -18,8 +18,11 @@ DEPENDS = " \ | |||
18 | 18 | ||
19 | inherit meson pkgconfig gobject-introspection vala gtk-doc | 19 | inherit meson pkgconfig gobject-introspection vala gtk-doc |
20 | 20 | ||
21 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'sniffer', '', d)}" | 21 | SNIFFER = "${@bb.utils.contains("BBFILE_COLLECTIONS", "gnome-layer", "sniffer", "", d)}" |
22 | PACKAGECONFIG[sniffer] = "-Dsniffer=true,-Dsniffer=false,gtk+4," | 22 | |
23 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', "${SNIFFER}", "", d)}" | ||
24 | |||
25 | PACKAGECONFIG[sniffer] = "-Dsniffer=true,-Dsniffer=false,gtk4," | ||
23 | 26 | ||
24 | PACKAGES =+ "gssdp-tools" | 27 | PACKAGES =+ "gssdp-tools" |
25 | 28 | ||