diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-04 18:22:38 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-11-04 18:22:38 -0800 |
commit | 545876dc0ebfdc23f610c4d5cae87ca7fb40be02 (patch) | |
tree | 91694c8bdffe1ef286c2787e4e74ef2234b8260e | |
parent | 75c451aaf677140a9601aec7a65f472eddcb1236 (diff) | |
download | flex-545876dc0ebfdc23f610c4d5cae87ca7fb40be02.tar.gz flex-545876dc0ebfdc23f610c4d5cae87ca7fb40be02.tar.bz2 flex-545876dc0ebfdc23f610c4d5cae87ca7fb40be02.zip |
add packaging
-rw-r--r-- | packaging/flex-2.5.33-yylineno.patch | 36 | ||||
-rw-r--r-- | packaging/flex-2.5.34-asneeded.patch | 15 | ||||
-rw-r--r-- | packaging/flex-2.5.34-doc-fix.diff | 96 | ||||
-rw-r--r-- | packaging/flex-2.5.34-fPIC.patch | 34 | ||||
-rw-r--r-- | packaging/flex-2.5.34-g++44.diff | 12 | ||||
-rw-r--r-- | packaging/flex.spec | 12 |
6 files changed, 0 insertions, 205 deletions
diff --git a/packaging/flex-2.5.33-yylineno.patch b/packaging/flex-2.5.33-yylineno.patch deleted file mode 100644 index 495efeb..0000000 --- a/packaging/flex-2.5.33-yylineno.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- main.c -+++ main.c -@@ -1633,9 +1633,11 @@ - - if (!C_plus_plus && !reentrant) { - outn ("extern int yylineno;"); -- OUT_BEGIN_CODE (); -- outn ("int yylineno = 1;"); -- OUT_END_CODE (); -+ if (do_yylineno) { -+ OUT_BEGIN_CODE (); -+ outn ("int yylineno = 1;"); -+ OUT_END_CODE (); -+ } - } - - if (C_plus_plus) { ---- flex.skl -+++ flex.skl -@@ -80,6 +80,16 @@ - m4preproc_define(`M4_GEN_PREFIX', - ``m4_define(yy[[$1]], [[M4_YY_PREFIX[[$1]]m4_ifelse($'`#,0,,[[($'`@)]])]])'') - -+%# don't use yylineno in non-reentrant scanners when %option yylineno not given -+m4_ifdef( [[M4_YY_REENTRANT]],, -+ [[m4_ifdef( [[M4_YY_USE_LINENO]],, -+ [[ -+ m4_define( [[M4_YY_NO_GET_LINENO]], [[]]) -+ m4_define( [[M4_YY_NO_SET_LINENO]], [[]]) -+ ]]) -+ ]] -+) -+ - %if-c++-only - /* The c++ scanner is a mess. The FlexLexer.h header file relies on the - * following macro. This is required in order to pass the c++-multiple-scanners diff --git a/packaging/flex-2.5.34-asneeded.patch b/packaging/flex-2.5.34-asneeded.patch deleted file mode 100644 index e3386a2..0000000 --- a/packaging/flex-2.5.34-asneeded.patch +++ /dev/null @@ -1,15 +0,0 @@ -libraries need to be last - -Index: tests/test-pthread/Makefile.am -=================================================================== ---- tests/test-pthread/Makefile.am.orig -+++ tests/test-pthread/Makefile.am -@@ -37,7 +37,7 @@ scanner.c: $(srcdir)/scanner.l - $(FLEX) $(LFLAGS) $< - - $(testname)$(EXEEXT): $(OBJS) -- $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LOADLIBES) -+ $(CC) -o $@ $(OBJS) $(LOADLIBES) $(LDFLAGS) - - test: $(testname)$(EXEEXT) - ./$(testname) $(srcdir)/test-*.input diff --git a/packaging/flex-2.5.34-doc-fix.diff b/packaging/flex-2.5.34-doc-fix.diff deleted file mode 100644 index 1209314..0000000 --- a/packaging/flex-2.5.34-doc-fix.diff +++ /dev/null @@ -1,96 +0,0 @@ -The documentation has the td_hilen and td_lolen fields in the wrong -order (comapre with tables_shared.h). - -Andreas Gruenbacher <agruen@suse.de> - ---- - doc/flex.info-1 | 16 ++++++++-------- - doc/flex.texi | 14 +++++++------- - 2 files changed, 15 insertions(+), 15 deletions(-) - ---- doc/flex.info-1.orig -+++ doc/flex.info-1 -@@ -4171,8 +4171,8 @@ indexed by name, as described below. The - +-------------------------------+ - Table 1 | uint16 td_id; | - | uint16 td_flags; | -- | uint32 td_lolen; | - | uint32 td_hilen; | -+ | uint32 td_lolen; | - | void td_data[]; | - | uint8 td_pad64[]; | - +-------------------------------+ -@@ -4303,12 +4303,6 @@ Fields of a table: - elements or between structs. The type of each member is - determined by the `YYTD_DATA*' bits. - --`td_lolen' -- Specifies the number of elements in the lowest dimension array. If -- this is a one-dimensional array, then it is simply the number of -- elements in this array. The element size is determined by the -- `td_flags' field. -- - `td_hilen' - If `td_hilen' is non-zero, then the data is a two-dimensional - array. Otherwise, the data is a one-dimensional array. `td_hilen' -@@ -4324,11 +4318,17 @@ Fields of a table: - simply skipped. Flex does not currently generate tables of zero - length. - -+`td_lolen' -+ Specifies the number of elements in the lowest dimension array. If -+ this is a one-dimensional array, then it is simply the number of -+ elements in this array. The element size is determined by the -+ `td_flags' field. -+ - `td_data[]' - The table data. This array may be a one- or two-dimensional array, - of type `int8', `int16', `int32', `struct yy_trans_info', or - `struct yy_trans_info*', depending upon the values in the -- `td_flags', `td_lolen', and `td_hilen' fields. -+ `td_flags', `td_hilen', and `td_lolen' fields. - - `td_pad64[]' - Zero or more NULL bytes, padding the entire table to the next ---- doc/flex.texi.orig -+++ doc/flex.texi -@@ -5083,8 +5083,8 @@ indexed by name, as described below. The - +-------------------------------+ - Table 1 | uint16 td_id; | - | uint16 td_flags; | -- | uint32 td_lolen; | - | uint32 td_hilen; | -+ | uint32 td_lolen; | - | void td_data[]; | - | uint8 td_pad64[]; | - +-------------------------------+ -@@ -5203,11 +5203,6 @@ two integers. There is no padding betwee - The type of each member is determined by the @code{YYTD_DATA*} bits. - @end table - --@item td_lolen --Specifies the number of elements in the lowest dimension array. If this is --a one-dimensional array, then it is simply the number of elements in this array. --The element size is determined by the @code{td_flags} field. -- - @item td_hilen - If @code{td_hilen} is non-zero, then the data is a two-dimensional array. - Otherwise, the data is a one-dimensional array. @code{td_hilen} contains the -@@ -5221,11 +5216,16 @@ by the @code{td_flags} field. It is pos - array, and no data is loaded, i.e., this table is simply skipped. Flex does not - currently generate tables of zero length. - -+@item td_lolen -+Specifies the number of elements in the lowest dimension array. If this is -+a one-dimensional array, then it is simply the number of elements in this array. -+The element size is determined by the @code{td_flags} field. -+ - @item td_data[] - The table data. This array may be a one- or two-dimensional array, of type - @code{int8}, @code{int16}, @code{int32}, @code{struct yy_trans_info}, or - @code{struct yy_trans_info*}, depending upon the values in the --@code{td_flags}, @code{td_lolen}, and @code{td_hilen} fields. -+@code{td_flags}, @code{td_hilen}, and @code{td_lolen} fields. - - @item td_pad64[] - Zero or more NULL bytes, padding the entire table to the next 64-bit boundary as diff --git a/packaging/flex-2.5.34-fPIC.patch b/packaging/flex-2.5.34-fPIC.patch deleted file mode 100644 index 3517a1c..0000000 --- a/packaging/flex-2.5.34-fPIC.patch +++ /dev/null @@ -1,34 +0,0 @@ -We've been packaging an -fPIC enabled libfl.a since some time, switching to -the new scheme is not worth it, package a libfl_pic.a -> libfl.a symlink -instead. ---- - Makefile.am | 11 ++--------- - 1 file changed, 2 insertions(+), 9 deletions(-) - ---- Makefile.am.orig -+++ Makefile.am -@@ -40,8 +40,7 @@ indent = @INDENT@ - - bin_PROGRAMS = flex - lib_LIBRARIES = \ -- libfl.a \ -- libfl_pic.a -+ libfl.a - - flex_SOURCES = \ - ccl.c \ -@@ -70,13 +69,7 @@ libfl_a_SOURCES = \ - libmain.c \ - libyywrap.c - --libfl_pic_a_SOURCES = \ -- libmain.c \ -- libyywrap.c -- --libfl_pic_a_CFLAGS = \ -- -fPIC \ -- $(AM_CFLAGS) -+libfl_a_CFLAGS = -fPIC $(AM_CFLAGS) - - noinst_HEADERS = \ - flexdef.h \ diff --git a/packaging/flex-2.5.34-g++44.diff b/packaging/flex-2.5.34-g++44.diff deleted file mode 100644 index 6ca879a..0000000 --- a/packaging/flex-2.5.34-g++44.diff +++ /dev/null @@ -1,12 +0,0 @@ -Index: skel.c -=================================================================== ---- skel.c 2008-02-26 22:34:19.000000000 +0100 -+++ skel.c 2009-01-12 11:29:26.000000000 +0100 -@@ -286,6 +286,7 @@ const char *skel[] = { - "#include <errno.h>", - "#include <cstdlib>", - "#include <cstring>", -+ "#include <cstdio>", - "/* end standard C++ headers. */", - "%endif", - "", diff --git a/packaging/flex.spec b/packaging/flex.spec index b54c405..e008037 100644 --- a/packaging/flex.spec +++ b/packaging/flex.spec @@ -8,11 +8,6 @@ Group: Development/Languages/C and C++ Source: %{name}-%{version}.tar.bz2 Source1: lex-wrapper.sh Source3: baselibs.conf -Patch1: flex-2.5.34-fPIC.patch -Patch2: flex-2.5.33-yylineno.patch -Patch3: flex-2.5.34-doc-fix.diff -Patch4: flex-2.5.34-g++44.diff -Patch5: flex-2.5.34-asneeded.patch BuildRequires: automake BuildRequires: bison BuildRequires: gcc-c++ @@ -25,13 +20,6 @@ patterns in text. %prep %setup -q -%patch1 -# Patch2 disabled for now, as the testsuite explicitly tests for yylineno in -# all scanners. Let's see if the failing packages got fixed in the meantime. -#patch2 -%patch3 -%patch4 -%patch5 %build autoreconf -fi |