summaryrefslogtreecommitdiff
path: root/media-libs/gstreamer/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-06-22 11:30:24 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-06-22 11:30:24 +0100
commitd56d144655e3785864da43c9acb6c228ef9360ae (patch)
treeb769b599a558483f82e9a057c41f1edd29626dd1 /media-libs/gstreamer/files
parentfab849d1daed0ba7f2ac497d07985c3dbb692543 (diff)
gentoo resync : 22.06.2019
Diffstat (limited to 'media-libs/gstreamer/files')
-rw-r--r--media-libs/gstreamer/files/gstreamer-0.10.36-disable-test_fail_abstract_new.patch35
-rw-r--r--media-libs/gstreamer/files/gstreamer-make-grammar.y-work-with-bison-3.patch33
2 files changed, 0 insertions, 68 deletions
diff --git a/media-libs/gstreamer/files/gstreamer-0.10.36-disable-test_fail_abstract_new.patch b/media-libs/gstreamer/files/gstreamer-0.10.36-disable-test_fail_abstract_new.patch
deleted file mode 100644
index 8162478232ae..000000000000
--- a/media-libs/gstreamer/files/gstreamer-0.10.36-disable-test_fail_abstract_new.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From e4707bfb24a8175018975a542f6e1c3b84ac02dd Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev <tetromino@gentoo.org>
-Date: Sun, 21 Oct 2012 00:26:24 -0400
-Subject: [PATCH] test: disable test_fail_abstract_new
-
-Depending on how glib is configured, whether there are systemwide
-debugging tools running, etc., this test can produce other signals, not
-necessarily signal 11.
----
- tests/check/gst/gstobject.c | 9 ---------
- 1 file changed, 9 deletions(-)
-
-diff --git a/tests/check/gst/gstobject.c b/tests/check/gst/gstobject.c
-index d5956db..25995bf 100644
---- a/tests/check/gst/gstobject.c
-+++ b/tests/check/gst/gstobject.c
-@@ -531,15 +531,6 @@ gst_object_suite (void)
-
- /* FIXME: GLib shouldn't crash here, but issue a warning and return a NULL
- * object, or at least g_error() and then abort properly ... (tpm) */
--#ifndef HAVE_OSX
-- /* Disabled for OS/X because a) it's a pretty silly test anyway and
-- * b) different OS/X versions raise different signals and it isn't worth
-- * the effort to try and detect which one should be producing which
-- */
-- /* SEGV tests go last so we can debug the others */
-- if (g_getenv ("CK_FORK") == NULL || strcmp (g_getenv ("CK_FORK"), "no") != 0)
-- tcase_add_test_raise_signal (tc_chain, test_fail_abstract_new, SIGSEGV);
--#endif
-
- return s;
- }
---
-1.7.12.3
-
diff --git a/media-libs/gstreamer/files/gstreamer-make-grammar.y-work-with-bison-3.patch b/media-libs/gstreamer/files/gstreamer-make-grammar.y-work-with-bison-3.patch
deleted file mode 100644
index 56bd5979c504..000000000000
--- a/media-libs/gstreamer/files/gstreamer-make-grammar.y-work-with-bison-3.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 90622bb35544655cf641e3ab65cf35a6d01869bc Mon Sep 17 00:00:00 2001
-From: Kerrick Staley <kerrick@kerrickstaley.com>
-Date: Tue, 20 Aug 2013 23:59:29 -0700
-Subject: [PATCH] Make grammar.y work with Bison 3
-
-YYLEX_PARAM is no longer supported in Bison 3.
----
- gst/parse/grammar.y | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y
-index 8a9019c..f533389 100644
---- a/gst/parse/grammar.y
-+++ b/gst/parse/grammar.y
-@@ -26,7 +26,6 @@
- */
-
- #define YYERROR_VERBOSE 1
--#define YYLEX_PARAM scanner
-
- #define YYENABLE_NLS 0
-
-@@ -659,6 +658,7 @@ static int yyerror (void *scanner, graph_t *graph, const char *s);
- %right '.'
- %left '!' '='
-
-+%lex-param { void *scanner }
- %parse-param { void *scanner }
- %parse-param { graph_t *graph }
- %pure-parser
---
-1.8.3.4
-