8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:43:03 +01:00

Enable use of bison 1.35 (tested with gnuwin32 version)

This commit is contained in:
brodsom 2003-07-01 23:19:37 +00:00
parent e64f231a56
commit 46d88d1291

View File

@ -7,12 +7,16 @@ s/^YYSTYPE \*yy/static YYSTYPE *yy/
s/^yytabelem yy/static const yytabelem yy/ s/^yytabelem yy/static const yytabelem yy/
s/^yytoktype yy/static const yytoktype yy/ s/^yytoktype yy/static const yytoktype yy/
s/^char \* yy/static char * yy/ s/^char \* yy/static char * yy/
s/^static int yychar;/#ifndef SHLIB_DEFS\ s/^static int yychar;/\
#ifndef SHLIB_DEFS\
int yychar;\ int yychar;\
#endif/ #endif\
s/^static int yyerrflag;/#ifndef SHLIB_DEFS\ /
s/^static int yyerrflag;/\
#ifndef SHLIB_DEFS\
int yyerrflag;\ int yyerrflag;\
#endif/ #endif\
/
s/yychar/DSQL_yychar/g s/yychar/DSQL_yychar/g
s/yyerrflag/DSQL_yyerrflag/g s/yyerrflag/DSQL_yyerrflag/g
s/yyparse/dsql_yyparse/g s/yyparse/dsql_yyparse/g