Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | From 60516f4798894f958fc53b470e1283318d0f8706 Mon Sep 17 00:00:00 2001 |
| 2 | From: Kerrick Staley <kerrick@kerrickstaley.com> |
| 3 | Date: Tue, 20 Aug 2013 23:59:29 -0700 |
| 4 | Subject: [PATCH 1/2] parse: make grammar.y work with Bison 3 |
| 5 | |
| 6 | YYLEX_PARAM is no longer supported in Bison 3. |
| 7 | |
| 8 | https://bugzilla.gnome.org/show_bug.cgi?id=706462 |
| 9 | --- |
| 10 | gst/parse/grammar.y | 2 +- |
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 12 | |
| 13 | diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y |
| 14 | index 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 | -- |
| 34 | 2.7.2 |
| 35 | |