summaryrefslogtreecommitdiffstats
path: root/src/gstreamer-1-fixes.patch
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-05-23 14:38:06 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-06-01 12:28:04 (GMT)
commit5390e5203e5cbcf5ec736ddaba3dc58b5e2c2c6f (patch)
tree113eb3aa721a36ddcefb656d9bd56506bf99c98c /src/gstreamer-1-fixes.patch
parentb974ef08d8b4fc555259eb49c9e34ef69c411948 (diff)
downloadmxe-5390e5203e5cbcf5ec736ddaba3dc58b5e2c2c6f.zip
mxe-5390e5203e5cbcf5ec736ddaba3dc58b5e2c2c6f.tar.gz
mxe-5390e5203e5cbcf5ec736ddaba3dc58b5e2c2c6f.tar.bz2
various packages: enable/disable mingw-w64 builds
Diffstat (limited to 'src/gstreamer-1-fixes.patch')
-rw-r--r--src/gstreamer-1-fixes.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gstreamer-1-fixes.patch b/src/gstreamer-1-fixes.patch
new file mode 100644
index 0000000..489d21a
--- /dev/null
+++ b/src/gstreamer-1-fixes.patch
@@ -0,0 +1,39 @@
+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
+