blob: dc2d606122b41c338f38fc3b8cf78e8921e5baeb [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 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