1 ANGLE doesn't build with bison 3.0
3 Author: allan.jensen@digia.com
4 ​https://bugs.webkit.org/show_bug.cgi?id=119798
5 Reviewed by Antti Koivisto.
6 Make glslang.y compatible with bison 3.0, by using %lex-param
7 to set YYLEX_PARAM and getting rid of useless YYID macro.
9 From upstream: http://trac.webkit.org/changeset/154109
10 [Arnout: adapted to our older webkit version]
11 Signed-off-by: Arnout Vandecaeppelle (Essensium/Mind) <arnout@mind.be>
13 Index: trunk/Source/ThirdParty/ANGLE/src/compiler/glslang.y
14 ===================================================================
15 --- trunk/Source/ThirdParty/ANGLE/src/compiler/glslang.y (revision 154108)
16 +++ trunk/Source/ThirdParty/ANGLE/src/compiler/glslang.y (revision 154109)
19 %parse-param {TParseContext* context}
20 +%lex-param {YYLEX_PARAM}