]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gen-introspect: Increase lexer buffer size to 1048576, taken from g-i
authorRico Tzschichholz <ricotz@ubuntu.com>
Mon, 1 Dec 2014 17:22:58 +0000 (18:22 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 1 Dec 2014 17:22:58 +0000 (18:22 +0100)
gobject-introspection/scannerlexer.l

index 093b44fbafd4a760d731c0d153054748dfbd0cd4..d3d24a1a8da2706841a625f956a3590ba773d838 100644 (file)
@@ -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);