summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch')
-rw-r--r--meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch
new file mode 100644
index 000000000..dc2d60612
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gstreamer-0.10.36/0001-parse-make-grammar.y-work-with-Bison-3.patch
@@ -0,0 +1,35 @@
1From 60516f4798894f958fc53b470e1283318d0f8706 Mon Sep 17 00:00:00 2001
2From: Kerrick Staley <kerrick@kerrickstaley.com>
3Date: Tue, 20 Aug 2013 23:59:29 -0700
4Subject: [PATCH 1/2] parse: make grammar.y work with Bison 3
5
6YYLEX_PARAM is no longer supported in Bison 3.
7
8https://bugzilla.gnome.org/show_bug.cgi?id=706462
9---
10 gst/parse/grammar.y | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y
14index 24fc87b..7f9dd16 100644
15--- a/gst/parse/grammar.y
16+++ b/gst/parse/grammar.y
17@@ -26,7 +26,6 @@
18 */
19
20 #define YYERROR_VERBOSE 1
21-#define YYLEX_PARAM scanner
22
23 #define YYENABLE_NLS 0
24
25@@ -648,6 +647,7 @@ static int yyerror (void *scanner, graph_t *graph, const char *s);
26 %right '.'
27 %left '!' '='
28
29+%lex-param { void *scanner }
30 %parse-param { void *scanner }
31 %parse-param { graph_t *graph }
32 %pure-parser
33--
342.7.2
35