Update cql.y for newer bison YAZ-720
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Jan 2014 15:20:44 +0000 (16:20 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Jan 2014 15:20:44 +0000 (16:20 +0100)
The important part is that YYLEX_PARAM and YYPARSE_PARAM are no
longer supported. Instead one must use %lex-param and %parse-param .

src/cql.y

index 0757724..cf85690 100644 (file)
--- a/src/cql.y
+++ b/src/cql.y
 
 #define YYSTYPE token
 
-#define YYPARSE_PARAM parm
-#define YYLEX_PARAM parm
+int yylex(YYSTYPE *lval, void *vp);
+int yyerror(void *lval, char *msg);
 
-    int yylex(YYSTYPE *lval, void *vp);
-    int yyerror(char *s);
 %}
 
-%pure_parser
+
+%lex-param {void *parm}
+%parse-param {void *parm}
+%pure-parser
 %token PREFIX_NAME SIMPLE_STRING AND OR NOT PROX GE LE NE EXACT SORTBY
 
 %%
@@ -229,7 +230,7 @@ searchTerm:
 
 %%
 
-int yyerror(char *s)
+int yyerror(void *locp, char *s)
 {
     return 0;
 }