From: Rico Tzschichholz Date: Mon, 1 Dec 2014 17:22:58 +0000 (+0100) Subject: gen-introspect: Increase lexer buffer size to 1048576, taken from g-i X-Git-Tag: 0.27.1~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10c7e166d00666526cc62291048d3dccdf3b815b;p=thirdparty%2Fvala.git gen-introspect: Increase lexer buffer size to 1048576, taken from g-i --- diff --git a/gobject-introspection/scannerlexer.l b/gobject-introspection/scannerlexer.l index 093b44fba..d3d24a1a8 100644 --- a/gobject-introspection/scannerlexer.l +++ b/gobject-introspection/scannerlexer.l @@ -38,6 +38,9 @@ int lineno; +#undef YY_BUF_SIZE +#define YY_BUF_SIZE 1048576 + extern int yylex (GIGenerator *igenerator); #define YY_DECL int yylex (GIGenerator *igenerator) static int yywrap (void);