summaryrefslogtreecommitdiff
path: root/media-libs/gstreamer/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-01-06 23:13:57 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-01-06 23:13:57 +0000
commita8b0d35ab742f31538d515dea39716e566d533c0 (patch)
tree40c6c87a13f0e5ef1111ed1bdd9191f3bd1c1e59 /media-libs/gstreamer/files
parent8fcdcec5fbdd0e3a77391e4f354218014f59f358 (diff)
gentoo resync : 06.01.2018
Diffstat (limited to 'media-libs/gstreamer/files')
-rw-r--r--media-libs/gstreamer/files/gstreamer-1.10.3-automagic-libunwind.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/media-libs/gstreamer/files/gstreamer-1.10.3-automagic-libunwind.patch b/media-libs/gstreamer/files/gstreamer-1.10.3-automagic-libunwind.patch
deleted file mode 100644
index 472726f56101..000000000000
--- a/media-libs/gstreamer/files/gstreamer-1.10.3-automagic-libunwind.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 930fc152babda61d2eab05f0c9cc1a1928ead731 Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp <leio@gentoo.org>
-Date: Sun, 5 Feb 2017 09:03:46 +0200
-Subject: [PATCH] configure: Allow specifying libunwind usage explicitly
-
-https://bugzilla.gnome.org/show_bug.cgi?id=778193
----
- configure.ac | 23 ++++++++++++++++++-----
- 1 file changed, 18 insertions(+), 5 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5081a75..5905430 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -827,7 +827,24 @@ fi
- AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
-
- dnl libunwind is optionally used by the leaks tracer
--PKG_CHECK_MODULES(UNWIND, libunwind, HAVE_UNWIND=yes, HAVE_UNWIND=no)
-+AC_ARG_ENABLE(libunwind,
-+ AS_HELP_STRING([--disable-libunwind],[disable using libunwind inside leaks tracer @<:@default=auto@:>@]),
-+ [LIBUNWIND="$enableval"], [LIBUNWIND="auto"])
-+
-+if test "x$LIBUNWIND" != "xno"; then
-+ PKG_CHECK_MODULES(UNWIND, libunwind, [
-+ HAVE_UNWIND=yes
-+ AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
-+ ], [
-+ HAVE_UNWIND=no
-+ if test "x$LIBUNWIND" = "xyes"; then
-+ AC_MSG_ERROR([libunwind requested but not installed.])
-+ fi
-+ ])
-+else
-+ HAVE_UNWIND=no
-+fi
-+AM_CONDITIONAL(HAVE_UNWIND, [test "x$HAVE_UNWIND" = "xyes"])
-
- dnl Check for backtrace() from libc
- AC_CHECK_FUNC(backtrace, [
-@@ -836,10 +853,6 @@ AC_CHECK_FUNC(backtrace, [
- ], [], [])
- ])
-
--if test "x$HAVE_UNWIND" = "xyes"; then
-- AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
--fi
--
- dnl building of unit test libraries
- AC_ARG_ENABLE(check,
- AS_HELP_STRING([--disable-check],[disable building unit test libraries]),
---
-2.10.1
-