package/gssdp: disable sniffer

Disable sniffer as it depends on gtk4 since
c251ddcd03
and so build failures are raised since bump to version 1.3.0 in commit
42b46562a2

Fixes:
 - http://autobuild.buildroot.org/results/3b4f4a2c19696b32c3a70af5792a305cd861328c

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021.08.x
Fabrice Fontaine 2021-07-30 13:30:47 +02:00 committed by Thomas Petazzoni
parent dd1ed4e366
commit 88b07f86be
1 changed files with 1 additions and 8 deletions

View File

@ -12,7 +12,7 @@ GSSDP_LICENSE = LGPL-2.1+
GSSDP_LICENSE_FILES = COPYING
GSSDP_INSTALL_STAGING = YES
GSSDP_DEPENDENCIES = host-pkgconf libglib2 libsoup
GSSDP_CONF_OPTS = -Dexamples=false
GSSDP_CONF_OPTS = -Dexamples=false -Dsniffer=false
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
GSSDP_CONF_OPTS += -Dintrospection=true -Dvapi=true
@ -21,11 +21,4 @@ else
GSSDP_CONF_OPTS += -Dintrospection=false -Dvapi=false
endif
ifeq ($(BR2_PACKAGE_LIBGTK3),y)
GSSDP_DEPENDENCIES += libgtk3
GSSDP_CONF_OPTS += -Dsniffer=true
else
GSSDP_CONF_OPTS += -Dsniffer=false
endif
$(eval $(meson-package))