Commit 0642953b authored by Felipe Contreras's avatar Felipe Contreras Committed by Peter Korsgaard
Browse files

gstreamer: remove unnecessary feature



On 0.10.11 the binary-registry was added, on 0.10.12 the libxml2
dependency was dropped when binary-registry was used, on 0.10.18 the
binary-registry was made default, and on 0.10.23 it was the only option.

So, libxml2 is not needed any more for the registry.

Signed-off-by: default avatarFelipe Contreras <felipe.contreras@gmail.com>
Acked-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent de597b40
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -9,9 +9,3 @@ config BR2_PACKAGE_GSTREAMER

comment "gstreamer requires a toolchain with WCHAR support"
	depends on !BR2_USE_WCHAR

config BR2_PACKAGE_GSTREAMER_LIBXML2
	bool "require libxml2 for registry and load/save"
	default y
	select BR2_PACKAGE_LIBXML2
	depends on BR2_PACKAGE_GSTREAMER
+2 −8
Original line number Diff line number Diff line
@@ -19,15 +19,9 @@ endif
GSTREAMER_CONF_OPT = \
		--disable-examples \
		--disable-tests \
		--disable-failing-tests
		--disable-failing-tests \
		--disable-loadsave

GSTREAMER_DEPENDENCIES = libglib2 host-pkg-config

ifeq ($(BR2_PACKAGE_GSTREAMER_LIBXML2),y)
GSTREAMER_DEPENDENCIES += libxml2
else
GSTREAMER_CONF_OPT += \
	--disable-loadsave
endif

$(eval $(call AUTOTARGETS,package/multimedia,gstreamer))