gstreamer: update to the latest gstreamer +plugins packages

liboil is not needed not used any more. orc _can_ be used instead, but
it's not needed.

[Peter: get rid of liboil selects]
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Felipe Contreras 2011-02-04 20:25:12 +02:00 committed by Peter Korsgaard
parent d0352edeea
commit 7120391443
7 changed files with 7 additions and 44 deletions

View File

@ -3,7 +3,7 @@
# gst-plugins-bad
#
#############################################################
GST_PLUGINS_BAD_VERSION = 0.10.14
GST_PLUGINS_BAD_VERSION = 0.10.21
GST_PLUGINS_BAD_SOURCE = gst-plugins-bad-$(GST_PLUGINS_BAD_VERSION).tar.bz2
GST_PLUGINS_BAD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-bad
GST_PLUGINS_BAD_LIBTOOL_PATCH = NO
@ -11,7 +11,7 @@ GST_PLUGINS_BAD_LIBTOOL_PATCH = NO
GST_PLUGINS_BAD_CONF_OPT = \
--disable-examples
GST_PLUGINS_BAD_DEPENDENCIES = gst-plugins-base gstreamer liboil
GST_PLUGINS_BAD_DEPENDENCIES = gst-plugins-base gstreamer
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AACPARSE),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-aacparse

View File

@ -1,7 +1,6 @@
menuconfig BR2_PACKAGE_GST_PLUGINS_BASE
bool "gst-plugins-base"
depends on BR2_PACKAGE_GSTREAMER
select BR2_PACKAGE_LIBOIL
help
A basic set of well-supported plug-ins for GStreamer.

View File

@ -3,7 +3,7 @@
# gst-plugins-base
#
#############################################################
GST_PLUGINS_BASE_VERSION = 0.10.25
GST_PLUGINS_BASE_VERSION = 0.10.32
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
@ -25,7 +25,7 @@ GST_PLUGINS_BASE_CONF_OPT = \
--disable-vorbistest \
--disable-freetypetest
GST_PLUGINS_BASE_DEPENDENCIES = gstreamer liboil
GST_PLUGINS_BASE_DEPENDENCIES = gstreamer
# alsa support needs pcm+mixer support, but configure fails to check for it
ifeq ($(BR2_PACKAGE_ALSA_LIB)$(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yyy)

View File

@ -3,7 +3,7 @@
# gst-plugins-good
#
#############################################################
GST_PLUGINS_GOOD_VERSION = 0.10.16
GST_PLUGINS_GOOD_VERSION = 0.10.27
GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.bz2
GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO

View File

@ -3,7 +3,7 @@
# gst-plugins-ugly
#
#############################################################
GST_PLUGINS_UGLY_VERSION = 0.10.10
GST_PLUGINS_UGLY_VERSION = 0.10.17
GST_PLUGINS_UGLY_SOURCE = gst-plugins-ugly-$(GST_PLUGINS_UGLY_VERSION).tar.bz2
GST_PLUGINS_UGLY_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-ugly
GST_PLUGINS_UGLY_LIBTOOL_PATCH = NO

View File

@ -1,36 +0,0 @@
[PATCH] gst-arch.m4: fix unaligned detection for x86-64 when cross compiling
Submitted upstream at https://bugzilla.gnome.org/show_bug.cgi?id=607317
Commit 4221e9dc (amd64/x86_64 allows unaligned memory access too) added
x86-64 to the unaligned access whitelist, but missed the trailing
wildcards, so the test never succeeds (host is something like
x86_64-unknown-linux-gnu).
When building natively, this isn't a big deal as the AC_TRY_RUN test
correctly detects it, but that doesn't work when cross compiling so
the build dies with:
configure: error: cannot run test program while cross compiling
See `config.log' for more details.
Fix it by adding the trailing wildcards.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: gstreamer-0.10.25/configure
===================================================================
--- gstreamer-0.10.25.orig/configure
+++ gstreamer-0.10.25/configure
@@ -15655,7 +15655,7 @@ $as_echo_n "checking if unaligned memory
$as_echo_n "(blacklisted) " >&6
as_cv_unaligned_access=no
;;
- i?86*|x86_64|amd64|powerpc*|m68k*|cris*)
+ i?86*|x86_64*|amd64*|powerpc*|m68k*|cris*)
$as_echo_n "(whitelisted) " >&6
as_cv_unaligned_access=yes
;;

View File

@ -3,7 +3,7 @@
# gstreamer
#
#############################################################
GSTREAMER_VERSION = 0.10.25
GSTREAMER_VERSION = 0.10.32
GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.bz2
GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer
GSTREAMER_INSTALL_STAGING = YES