diff options
author | Sven Neumann <s.neumann@raumfeld.com> | 2011-07-14 09:27:33 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-07-24 23:10:51 +0200 |
commit | ce0b61a7a5864818451e190aa040e87b369b5e72 (patch) | |
tree | 93534627d35ce1c1fe560479d56950cabfd7855b | |
parent | 9683d4f11aa39975d8ed006b86f7fda4f59876c6 (diff) | |
download | buildroot-novena-ce0b61a7a5864818451e190aa040e87b369b5e72.tar.gz buildroot-novena-ce0b61a7a5864818451e190aa040e87b369b5e72.zip |
gst-plugins-ugly: update configuration options
Remove the option for the libid3tag plug-in as is not any longer
found in gst-plugins-ugly.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/multimedia/gst-plugins-ugly/Config.in | 4 | ||||
-rw-r--r-- | package/multimedia/gst-plugins-ugly/gst-plugins-ugly.mk | 7 |
2 files changed, 0 insertions, 11 deletions
diff --git a/package/multimedia/gst-plugins-ugly/Config.in b/package/multimedia/gst-plugins-ugly/Config.in index 9f738cf17..e20426f1b 100644 --- a/package/multimedia/gst-plugins-ugly/Config.in +++ b/package/multimedia/gst-plugins-ugly/Config.in @@ -38,10 +38,6 @@ config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_SYNAESTHESIA comment "plugins with external dependencies (there may be more available)" -config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ID3TAG - bool "id3tag" - select BR2_PACKAGE_LIBID3TAG - config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD bool "mad (*.mp3 audio)" select BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ID3TAG diff --git a/package/multimedia/gst-plugins-ugly/gst-plugins-ugly.mk b/package/multimedia/gst-plugins-ugly/gst-plugins-ugly.mk index a173df194..da214a194 100644 --- a/package/multimedia/gst-plugins-ugly/gst-plugins-ugly.mk +++ b/package/multimedia/gst-plugins-ugly/gst-plugins-ugly.mk @@ -60,13 +60,6 @@ else GST_PLUGINS_UGLY_CONF_OPT += --disable-synaesthesia endif -ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ID3TAG),y) -GST_PLUGINS_UGLY_CONF_OPT += --enable-id3tag -GST_PLUGINS_UGLY_DEPENDENCIES += libid3tag -else -GST_PLUGINS_UGLY_CONF_OPT += --disable-id3tag -endif - ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD),y) GST_PLUGINS_UGLY_CONF_OPT += --enable-mad GST_PLUGINS_UGLY_DEPENDENCIES += libmad |