summaryrefslogtreecommitdiff
path: root/package/multimedia/gst-plugins-base
diff options
context:
space:
mode:
authorWill Newton <will.newton@gmail.com>2009-06-16 21:50:02 +0100
committerWill Newton <will.newton@gmail.com>2009-06-16 21:51:13 +0100
commit11e7857989303acbd4b5143297e615bc8cf3754a (patch)
treef340238fcc6068e37500088092f05d92ebf48a60 /package/multimedia/gst-plugins-base
parentda99a9eedefbc6611bfd1237de5db33fd3e3f137 (diff)
gst-plugins-base: Bump version to 0.10.23.
Also add a config option for the app plugin that was moved from to gst-plugins-base from gst-plugins-bad in version 0.10.22. Closes #393. Signed-off-by: Will Newton <will.newton@gmail.com>
Diffstat (limited to 'package/multimedia/gst-plugins-base')
-rw-r--r--package/multimedia/gst-plugins-base/Config.in3
-rw-r--r--package/multimedia/gst-plugins-base/gst-plugins-base.mk8
2 files changed, 10 insertions, 1 deletions
diff --git a/package/multimedia/gst-plugins-base/Config.in b/package/multimedia/gst-plugins-base/Config.in
index 5e267f22c..8883a433f 100644
--- a/package/multimedia/gst-plugins-base/Config.in
+++ b/package/multimedia/gst-plugins-base/Config.in
@@ -14,6 +14,9 @@ comment "dependency-less plugins"
config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER
bool "adder"
+config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP
+ bool "app"
+
config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT
bool "audioconvert (mandatory for audio playback)"
default y
diff --git a/package/multimedia/gst-plugins-base/gst-plugins-base.mk b/package/multimedia/gst-plugins-base/gst-plugins-base.mk
index 58b7bce3a..88c68e15d 100644
--- a/package/multimedia/gst-plugins-base/gst-plugins-base.mk
+++ b/package/multimedia/gst-plugins-base/gst-plugins-base.mk
@@ -3,7 +3,7 @@
# gst-plugins-base
#
#############################################################
-GST_PLUGINS_BASE_VERSION = 0.10.22
+GST_PLUGINS_BASE_VERSION = 0.10.23
GST_PLUGINS_BASE_SOURCE = gst-plugins-base-$(GST_PLUGINS_BASE_VERSION).tar.bz2
GST_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base
GST_PLUGINS_BASE_INSTALL_STAGING = YES
@@ -28,6 +28,12 @@ else
GST_PLUGINS_BASE_CONF_OPT += --disable-adder
endif
+ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP),y)
+GST_PLUGINS_BASE_CONF_OPT += --enable-app
+else
+GST_PLUGINS_BASE_CONF_OPT += --disable-app
+endif
+
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT),y)
GST_PLUGINS_BASE_CONF_OPT += --enable-audioconvert
else