Fix gst-plugins-bad dependency on libcdaudio

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:14 +01:00 committed by Peter Korsgaard
parent fec9d0a099
commit c198660d41
2 changed files with 11 additions and 0 deletions

View File

@ -36,6 +36,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER
bool "bayer"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO
bool "cdaudio"
select BR2_PACKAGE_LIBCDAUDIO
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE
bool "cdxaparse"

View File

@ -69,6 +69,13 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-cdxaparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-cdaudio
GST_PLUGINS_BAD_DEPENDENCIES += libcdaudio
else
GST_PLUGINS_BAD_CONF_OPT += --disable-cdaudio
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-dccp
else