Hello community,
here is the log from the commit of package gstreamer-0_10-plugins-base for
openSUSE:Factory checked in at 2015-07-14 17:20:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-base (Old)
and /work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-0_10-plugins-base"
Changes:
--------
---
/work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-base/gstreamer-0_10-plugins-base.changes
2013-09-07 12:33:09.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-base.new/gstreamer-0_10-plugins-base.changes
2015-07-14 17:20:42.000000000 +0200
@@ -1,0 +2,6 @@
+Sat Jun 27 18:08:26 UTC 2015 - [email protected]
+
+- Add gstreamer-0_10-plugins-base-gcc5-fix-on-i586.patch: Fixes
+ build on i586 with gcc >= 5.
+
+-------------------------------------------------------------------
New:
----
gstreamer-0_10-plugins-base-gcc5-fix-on-i586.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gstreamer-0_10-plugins-base.spec ++++++
--- /var/tmp/diff_new_pack.F7Iybk/_old 2015-07-14 17:20:42.000000000 +0200
+++ /var/tmp/diff_new_pack.F7Iybk/_new 2015-07-14 17:20:42.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package gstreamer-0_10-plugins-base
#
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -33,6 +33,8 @@
Patch0: gstreamer-0_10-plugins-base-missing-return-value.patch
# PATCH-FIX-UPSTREAM gstreamer-0_10-plugins-base-0.10.36-kde_302652.patch
kde#302652 [email protected] -- Fix problem in Amarok when changing between
streams. Gstreamer doesn't seem to care about the 0.10.x branch any more.
Patch1: gstreamer-0_10-plugins-base-0.10.36-kde_302652.patch
+# PATCH-FIX-UPSTREAM gstreamer-0_10-plugins-base-gcc5-fix-on-i586.patch
[email protected] -- Fix build with gcc5 on i586, EMMINTRIN is defined but
not usable without SSE. Patch taken from fedora.
+Patch2: gstreamer-0_10-plugins-base-gcc5-fix-on-i586.patch
BuildRequires: alsa-devel
BuildRequires: cdparanoia-devel
BuildRequires: check-devel
@@ -236,6 +238,7 @@
translation-update-upstream po gst-plugins-base-0.10
%patch0 -p1
%patch1 -p1
+%patch2 -p1
%build
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
++++++ gstreamer-0_10-plugins-base-gcc5-fix-on-i586.patch ++++++
>From bde72c7bebaa9d10cd49ae5542d361bda7aa7bd0 Mon Sep 17 00:00:00 2001
From: Antoine Jacoutot <[email protected]>
Date: Mon, 20 Jan 2014 15:44:09 +0100
Subject: [PATCH 1/2] audioresample: Fix build on x86 if emmintrin.h is
available but can't be used
On i386, EMMINTRIN is defined but not usable without SSE so check for
__SSE__ and __SSE2__ as well.
https://bugzilla.gnome.org/show_bug.cgi?id=670690
---
gst/audioresample/resample.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
index 98d006c..481fa01 100644
--- a/gst/audioresample/resample.c
+++ b/gst/audioresample/resample.c
@@ -77,13 +77,13 @@
#define EXPORT G_GNUC_INTERNAL
#ifdef _USE_SSE
-#ifndef HAVE_XMMINTRIN_H
+#if !defined(__SSE__) || !defined(HAVE_XMMINTRIN_H)
#undef _USE_SSE
#endif
#endif
#ifdef _USE_SSE2
-#ifndef HAVE_EMMINTRIN_H
+#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H)
#undef _USE_SSE2
#endif
#endif
--
1.9.0
>From e9746600b409db9a5c63dc7a22b21f80c8c5328c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <[email protected]>
Date: Mon, 20 Jan 2014 16:11:04 +0100
Subject: [PATCH 2/2] audioresample: It's HAVE_EMMINTRIN_H, not
HAVE_XMMINTRIN_H for SSE2
---
gst/audioresample/resample.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
index 481fa01..4410bdd 100644
--- a/gst/audioresample/resample.c
+++ b/gst/audioresample/resample.c
@@ -83,7 +83,7 @@
#endif
#ifdef _USE_SSE2
-#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H)
+#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H)
#undef _USE_SSE2
#endif
#endif
--
1.9.0