Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 345785 | Differences between
and this patch

Collapse All | Expand All

(-)flex-2.5.35/configure.in (-7 / +1 lines)
Lines 39-44 AM_GNU_GETTEXT_VERSION(0.12) Link Here
39
AC_PROG_YACC
39
AC_PROG_YACC
40
AM_PROG_LEX
40
AM_PROG_LEX
41
AC_PROG_CC
41
AC_PROG_CC
42
AM_PROG_CC_C_O
42
AC_PROG_CXX
43
AC_PROG_CXX
43
AC_PROG_LN_S
44
AC_PROG_LN_S
44
AC_PROG_RANLIB
45
AC_PROG_RANLIB
Lines 103-115 AC_HEADER_STDBOOL Link Here
103
AC_C_CONST
104
AC_C_CONST
104
AC_TYPE_SIZE_T
105
AC_TYPE_SIZE_T
105
106
106
# Checks for library functions.
107
108
AC_FUNC_FORK
109
AC_FUNC_MALLOC
110
AC_FUNC_REALLOC
111
AC_CHECK_FUNCS([dup2 isascii memset pow regcomp setlocale strchr strtol])
112
113
AC_CONFIG_FILES(
107
AC_CONFIG_FILES(
114
Makefile
108
Makefile
115
doc/Makefile
109
doc/Makefile
(-)flex-2.5.35/Makefile.am (-27 lines)
Lines 127-159 LIBS = @LIBINTL@ @LIBS@ Link Here
127
skel.c: flex.skl mkskel.sh flexint.h tables_shared.h
127
skel.c: flex.skl mkskel.sh flexint.h tables_shared.h
128
	sed 's/m4_/m4postproc_/g; s/m4preproc_/m4_/g' $(srcdir)/flex.skl | $(m4) -P -DFLEX_MAJOR_VERSION=`echo $(VERSION)|cut -f 1 -d .` -DFLEX_MINOR_VERSION=`echo $(VERSION)|cut -f 2 -d .` -DFLEX_SUBMINOR_VERSION=`echo $(VERSION)|cut -f 3 -d .` | sed 's/m4postproc_/m4_/g' | $(SHELL) $(srcdir)/mkskel.sh  >skel.c
128
	sed 's/m4_/m4postproc_/g; s/m4preproc_/m4_/g' $(srcdir)/flex.skl | $(m4) -P -DFLEX_MAJOR_VERSION=`echo $(VERSION)|cut -f 1 -d .` -DFLEX_MINOR_VERSION=`echo $(VERSION)|cut -f 2 -d .` -DFLEX_SUBMINOR_VERSION=`echo $(VERSION)|cut -f 3 -d .` | sed 's/m4postproc_/m4_/g' | $(SHELL) $(srcdir)/mkskel.sh  >skel.c
129
129
130
# Explicitly describe dependencies.
131
# You can recreate this with `gcc -I. -MM *.c'
132
buf.o: buf.c flexdef.h flexint.h
133
ccl.o: ccl.c flexdef.h flexint.h
134
dfa.o: dfa.c flexdef.h flexint.h tables.h tables_shared.h
135
ecs.o: ecs.c flexdef.h flexint.h
136
scanflags.o: scanflags.c flexdef.h flexint.h
137
gen.o: gen.c flexdef.h flexint.h tables.h tables_shared.h
138
libmain.o: libmain.c
139
libyywrap.o: libyywrap.c
140
main.o: main.c flexdef.h flexint.h version.h options.h scanopt.h \
141
 tables.h tables_shared.h
142
misc.o: misc.c flexdef.h flexint.h tables.h tables_shared.h
143
nfa.o: nfa.c flexdef.h flexint.h
144
options.o: options.c options.h scanopt.h flexdef.h flexint.h
145
parse.o: parse.c flexdef.h flexint.h tables.h tables_shared.h
146
scan.o: scan.c flexdef.h flexint.h parse.h
147
scanopt.o: scanopt.c flexdef.h flexint.h scanopt.h
148
skel.o: skel.c flexdef.h flexint.h
149
sym.o: sym.c flexdef.h flexint.h
150
tables.o: tables.c flexdef.h flexint.h tables.h tables_shared.h
151
tables_shared.o: tables_shared.c flexdef.h flexint.h tables.h \
152
 tables_shared.h
153
tblcmp.o: tblcmp.c flexdef.h flexint.h
154
yylex.o: yylex.c flexdef.h flexint.h parse.h
155
filter.o: filter.c flexdef.h flexint.h
156
157
# Create the ChangeLog, but only if we're inside a cvs working directory
130
# Create the ChangeLog, but only if we're inside a cvs working directory
158
131
159
ChangeLog: $(srcdir)/tools/cvsauthors $(srcdir)/tools/cvs2cl.pl
132
ChangeLog: $(srcdir)/tools/cvsauthors $(srcdir)/tools/cvs2cl.pl
(-)flex-2.5.35/tests/test-pthread/Makefile.am (-1 / +1 lines)
Lines 27-33 CLEANFILES = scanner.c scanner.h parser. Link Here
27
OBJS = scanner.o # parser.o
27
OBJS = scanner.o # parser.o
28
28
29
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
29
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
30
LDFLAGS = -lpthread
30
LOADLIBES = -lpthread
31
#LFLAGS = --header="scanner.h"
31
#LFLAGS = --header="scanner.h"
32
#YFLAGS = --defines --output=parser.c
32
#YFLAGS = --defines --output=parser.c
33
33

Return to bug 345785