summaryrefslogtreecommitdiffstats
path: root/flex/flex-2.5.35-gcc44-1.patch
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 19:15:23 +0100
committerLukc <lukc@upyum.com>2010-12-11 19:15:35 +0100
commit6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch)
treeb5e6da6d95b9a1235d82032b509b80483a886ff5 /flex/flex-2.5.35-gcc44-1.patch
downloadbase-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip
Engagement initial.
Diffstat (limited to 'flex/flex-2.5.35-gcc44-1.patch')
-rw-r--r--flex/flex-2.5.35-gcc44-1.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/flex/flex-2.5.35-gcc44-1.patch b/flex/flex-2.5.35-gcc44-1.patch
new file mode 100644
index 0000000..8f0e80f
--- /dev/null
+++ b/flex/flex-2.5.35-gcc44-1.patch
@@ -0,0 +1,24 @@
+Submitted by: Matt Burgess (matthew at linuxfromscratch dot org)
+Date: 2009-05-03
+Initial Package Version: 2.5.35
+Origin: Matt Burgess
+Upstream Status: Submitted (attached to sourceforge bug 2178663)
+Description: Fixes an error caused by header cleanups in GCC 4.4.0 that is
+ evident from the test suite and would affect any C++ lexers
+ generated by Flex. Without this patch, Flex will generate lexers
+ containing references to the 'EOF' symbol without including the
+ necessary C++ header file, leading to:
+
+ error: 'EOF' was not declared in this scope
+
+diff -Naur flex-2.5.35.orig/skel.c flex-2.5.35/skel.c
+--- flex-2.5.35.orig/skel.c 2008-02-26 21:34:19.000000000 +0000
++++ flex-2.5.35/skel.c 2009-05-03 15:18:14.000000000 +0000
+@@ -284,6 +284,7 @@
+ "/* begin standard C++ headers. */",
+ "#include <iostream> ",
+ "#include <errno.h>",
++ "#include <cstdio>",
+ "#include <cstdlib>",
+ "#include <cstring>",
+ "/* end standard C++ headers. */",