From: Emil Velikov <[email protected]> Flex version 2.6.2 does not expand (define) the yy version of some function, thus we fail to compile.
Strictly speaking this might be a flex bug, although expanding the few instances is perfectly trivial and works with 2.6.2 and earlier versions of flex. Cc: "12.0 13.0" <[email protected]> Cc: Mike Lothian <[email protected]> Repored-by: Mike Lothian <[email protected]> Signed-off-by: Emil Velikov <[email protected]> --- Do we have any flex/bison wizards around ? I'm wondering if one cannot skim through the files and nuke some of the {mis,ab}uses that are bound to be lurking ;-) --- src/compiler/glsl/glsl_lexer.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/glsl/glsl_lexer.ll b/src/compiler/glsl/glsl_lexer.ll index d5e5d4c..e5492bf 100644 --- a/src/compiler/glsl/glsl_lexer.ll +++ b/src/compiler/glsl/glsl_lexer.ll @@ -627,12 +627,12 @@ classify_identifier(struct _mesa_glsl_parse_state *state, const char *name) void _mesa_glsl_lexer_ctor(struct _mesa_glsl_parse_state *state, const char *string) { - yylex_init_extra(state, & state->scanner); - yy_scan_string(string, state->scanner); + _mesa_glsl_lexer_lex_init_extra(state, & state->scanner); + _mesa_glsl_lexer__scan_string(string, state->scanner); } void _mesa_glsl_lexer_dtor(struct _mesa_glsl_parse_state *state) { - yylex_destroy(state->scanner); + _mesa_glsl_lexer_lex_destroy(state->scanner); } -- 2.10.0 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
