summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-06-23 10:44:23 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-06-23 10:44:23 (GMT)
commit84e5403f1035e4332fc0483de717c5eeb6867bb0 (patch)
treea319152a54ee068e38d90fb8374770ef3614aa41
parent08bd15ca83e7ecd5ce770dd429053b176df80844 (diff)
downloadmxe-84e5403f1035e4332fc0483de717c5eeb6867bb0.zip
mxe-84e5403f1035e4332fc0483de717c5eeb6867bb0.tar.gz
mxe-84e5403f1035e4332fc0483de717c5eeb6867bb0.tar.bz2
update package gstreamer and plugins
-rw-r--r--index.html6
-rw-r--r--src/gst-plugins-base.mk2
-rw-r--r--src/gst-plugins-good.mk2
-rw-r--r--src/gstreamer-1-fixes.patch39
-rw-r--r--src/gstreamer.mk2
5 files changed, 6 insertions, 45 deletions
diff --git a/index.html b/index.html
index 88005da..7d1b125 100644
--- a/index.html
+++ b/index.html
@@ -1269,17 +1269,17 @@ aptitude -t squeeze-backports install cmake yasm</pre>
</tr>
<tr>
<td id="gst-plugins-base-package">gst-plugins-base</td>
- <td id="gst-plugins-base-version">1.0.7</td>
+ <td id="gst-plugins-base-version">1.1.1</td>
<td id="gst-plugins-base-website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-base</a></td>
</tr>
<tr>
<td id="gst-plugins-good-package">gst-plugins-good</td>
- <td id="gst-plugins-good-version">1.0.7</td>
+ <td id="gst-plugins-good-version">1.1.1</td>
<td id="gst-plugins-good-website"><a href="http://gstreamer.freedesktop.org/">gst-plugins-good</a></td>
</tr>
<tr>
<td id="gstreamer-package">gstreamer</td>
- <td id="gstreamer-version">1.0.7</td>
+ <td id="gstreamer-version">1.1.1</td>
<td id="gstreamer-website"><a href="http://gstreamer.freedesktop.org/">gstreamer</a></td>
</tr>
<tr>
diff --git a/src/gst-plugins-base.mk b/src/gst-plugins-base.mk
index 4338604..5a20fa2 100644
--- a/src/gst-plugins-base.mk
+++ b/src/gst-plugins-base.mk
@@ -3,7 +3,7 @@
PKG := gst-plugins-base
$(PKG)_IGNORE :=
-$(PKG)_CHECKSUM := c9e057774746c6dea07052fa0fec9cfc2519ceea
+$(PKG)_CHECKSUM := 373a3af5ff301da8f8b9b3cebd3f588250affcb0
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := http://gstreamer.freedesktop.org/src/$(PKG)/$($(PKG)_FILE)
diff --git a/src/gst-plugins-good.mk b/src/gst-plugins-good.mk
index 7c9ca50..6fe3bd4 100644
--- a/src/gst-plugins-good.mk
+++ b/src/gst-plugins-good.mk
@@ -3,7 +3,7 @@
PKG := gst-plugins-good
$(PKG)_IGNORE :=
-$(PKG)_CHECKSUM := 14ddd7b87045920f6a394bd018a39c42503561fd
+$(PKG)_CHECKSUM := ff1c47cecde5b6fccbe5d9fe49dd3994d2c7c63f
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := http://gstreamer.freedesktop.org/src/$(PKG)/$($(PKG)_FILE)
diff --git a/src/gstreamer-1-fixes.patch b/src/gstreamer-1-fixes.patch
deleted file mode 100644
index 489d21a..0000000
--- a/src/gstreamer-1-fixes.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-This file is part of MXE.
-See index.html for further information.
-
-This patch has been taken from https://bug697550.bugzilla-attachments.gnome.org/attachment.cgi?id=240941
-
-From 5ccb0f4589e04aaf711b44b77cf609333e1b40bd Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1=D1?=
- =?UTF-8?q?=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= <lrn1986@gmail.com>
-Date: Mon, 8 Apr 2013 13:14:35 +0400
-Subject: [PATCH 1/3] Also check for clock_gettime in libpthread
-
- libwinpthreads provides POSIX time API.
- It also provides libpthread alias for itself, for compatibility, so that
-is what we will link with.
-
-Fixes #697550
----
- configure.ac | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 1063828..34b7448 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -458,6 +458,11 @@ AC_CHECK_FUNCS(clock_gettime, [], [
- AC_CHECK_LIB(rt, clock_gettime, [
- AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
- LIBS="$LIBS -lrt"
-+ ], [
-+ AC_CHECK_LIB(pthread, clock_gettime, [
-+ AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
-+ LIBS="$LIBS -lpthread"
-+ ])
- ])
- ])
-
---
-1.8.0
-
diff --git a/src/gstreamer.mk b/src/gstreamer.mk
index 2fe02c8..5796bad 100644
--- a/src/gstreamer.mk
+++ b/src/gstreamer.mk
@@ -3,7 +3,7 @@
PKG := gstreamer
$(PKG)_IGNORE :=
-$(PKG)_CHECKSUM := 3ce96dd414233f23b81651e90a3efd54054abce4
+$(PKG)_CHECKSUM := 56f6a760f4c9e0ccf9e67a602a53df8ca1bb4252
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := http://gstreamer.freedesktop.org/src/$(PKG)/$($(PKG)_FILE)