summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-12-20 01:48:21 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-12-20 01:48:21 (GMT)
commitcf8b24d84dbc904e245406b6d70eaca36851955c (patch)
treecd0245417437983747edb163fa48c54af1a33c9e /src
parenteb20c9c243a31b26e9765762780898ef10542d8a (diff)
downloadmxe-cf8b24d84dbc904e245406b6d70eaca36851955c.zip
mxe-cf8b24d84dbc904e245406b6d70eaca36851955c.tar.gz
mxe-cf8b24d84dbc904e245406b6d70eaca36851955c.tar.bz2
Create gstreamer-1-bison-3.patch
Fixes #575.
Diffstat (limited to 'src')
-rw-r--r--src/gstreamer-1-bison-3.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/gstreamer-1-bison-3.patch b/src/gstreamer-1-bison-3.patch
new file mode 100644
index 0000000..16dd76b
--- /dev/null
+++ b/src/gstreamer-1-bison-3.patch
@@ -0,0 +1,34 @@
+This file is part of MXE.
+See index.html for further information.
+
+Taken from https://bugzilla.gnome.org/show_bug.cgi?id=706462
+
+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.
+
+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