Commit 4914383e authored by Lionel Landwerlin's avatar Lionel Landwerlin Committed by Peter Korsgaard
Browse files

Fix gst-plugins-bad dependency on libdvdnav

parent cc9fb534
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -56,6 +56,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF
	bool "dtmf"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDNAV
	bool "dvdnav"
        select BR2_PACKAGE_LIBDVDNAV

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU
	bool "dvdspu"

+7 −0
Original line number Diff line number Diff line
@@ -101,6 +101,13 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-dtmf
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDNAV),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-dvdnav
GST_PLUGINS_BAD_DEPENDENCIES += libdvdnav
else
GST_PLUGINS_BAD_CONF_OPT += --disable-dvdnav
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-dvdspu
else