gst-plugins-ugly: fix dependencies for mad MP3 decoder plug-in

The mad plug-in depends on libid3tag. This dependency used to be
implicit by selecting the id3tag plug-in. Now that this plug-in
is not any longer part of gst-plugins-ugly we need an explicit
dependency on libid3tag.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Sven Neumann 2011-07-16 00:33:00 +02:00 committed by Peter Korsgaard
parent ce0b61a7a5
commit 8d3b7283fa
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ comment "plugins with external dependencies (there may be more available)"
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD
bool "mad (*.mp3 audio)"
select BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ID3TAG
select BR2_PACKAGE_LIBID3TAG
select BR2_PACKAGE_LIBMAD
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEG2DEC

View File

@ -62,7 +62,7 @@ endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD),y)
GST_PLUGINS_UGLY_CONF_OPT += --enable-mad
GST_PLUGINS_UGLY_DEPENDENCIES += libmad
GST_PLUGINS_UGLY_DEPENDENCIES += libid3tag libmad
else
GST_PLUGINS_UGLY_CONF_OPT += --disable-mad
endif