Commit 8d3b7283 authored by Sven Neumann's avatar Sven Neumann Committed by Peter Korsgaard
Browse files

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: default avatarSven Neumann <s.neumann@raumfeld.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent ce0b61a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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