Fix gst-plugins-bad dependency on libdvdnav

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Lionel Landwerlin 2009-11-12 23:33:18 +01:00 committed by Peter Korsgaard
parent cc9fb53408
commit 4914383ebd
2 changed files with 11 additions and 0 deletions

View File

@ -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"

View File

@ -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