tags 501960 +patch
thankyou

Here's a fix for flex on ia64, which corrects the bug on IA64 due to
the different buffer size on this architecture. This also clears
#500171 (it will simply need a give-back once flex is updated).

--- flex-2.5.35.orig/flex.skl
+++ flex-2.5.35/flex.skl
@@ -1063,7 +1063,12 @@

 /* Amount of stuff to slurp up with each read. */
 #ifndef YY_READ_BUF_SIZE
+#ifdef __ia64__
+/* On IA-64, the buffer size is 16k, not 8k */
+#define YY_READ_BUF_SIZE 16384
+#else
 #define YY_READ_BUF_SIZE 8192
+#endif /* __ia64__ */
 #endif

 m4_ifdef( [[M4_YY_NOT_IN_HEADER]],



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to