diff options
Diffstat (limited to 'network/netsurf/nsgenbind-lexer.l.patch')
-rw-r--r-- | network/netsurf/nsgenbind-lexer.l.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/network/netsurf/nsgenbind-lexer.l.patch b/network/netsurf/nsgenbind-lexer.l.patch new file mode 100644 index 0000000000..17165fb3ac --- /dev/null +++ b/network/netsurf/nsgenbind-lexer.l.patch @@ -0,0 +1,18 @@ +index b257c83..8189a72 100644 +--- a/src/nsgenbind-lexer.l ++++ b/src/nsgenbind-lexer.l +@@ -19,6 +19,16 @@ + yylloc->first_column = yylloc->last_column + 1; \ + yylloc->last_column += yyleng; + ++ ++/* Ensure compatability with bison 2.6 and later */ ++#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED && defined NSGENBIND_STYPE_IS_DECLARED ++#define YYSTYPE NSGENBIND_STYPE ++#endif ++ ++#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED && defined NSGENBIND_LTYPE_IS_DECLARED ++#define YYLTYPE NSGENBIND_LTYPE ++#endif ++ + %} |