From: wrobell Date: Tue, 7 Oct 2003 23:15:26 +0000 (+0000) Subject: - flex is required, so use -lfl instead of -ll X-Git-Tag: auto/ac/apache-mod_python-3_1_2b-1~2 X-Git-Url: https://git.pld-linux.org/?p=packages%2Fapache-mod_python.git;a=commitdiff_plain;h=2f5d21e2a7b942f8b78b24c554c4c89a754f0250 - flex is required, so use -lfl instead of -ll Changed files: apache-mod_python-flex.patch -> 1.1 --- diff --git a/apache-mod_python-flex.patch b/apache-mod_python-flex.patch new file mode 100644 index 0000000..c21f45b --- /dev/null +++ b/apache-mod_python-flex.patch @@ -0,0 +1,24 @@ +diff -Nur mod_python-3.1.0a.orig/dist/setup.py.in mod_python-3.1.0a/dist/setup.py.in +--- mod_python-3.1.0a.orig/dist/setup.py.in Thu May 29 16:15:46 2003 ++++ mod_python-3.1.0a/dist/setup.py.in Wed Oct 8 01:17:53 2003 +@@ -40,7 +40,7 @@ + "src/psp_parser.c", + "src/_pspmodule.c"], + include_dirs=["src/include"], +- libraries=["l"] ++ libraries=["fl"] + ) + ] + ) +diff -Nur mod_python-3.1.0a.orig/src/Makefile.in mod_python-3.1.0a/src/Makefile.in +--- mod_python-3.1.0a.orig/src/Makefile.in Thu Aug 14 17:24:42 2003 ++++ mod_python-3.1.0a/src/Makefile.in Wed Oct 8 01:17:44 2003 +@@ -63,7 +63,7 @@ + # requires flex 2.5.31 for reentrant support + LEX=/usr/local/bin/flex + INCLUDES=@INCLUDES@ +-LIBS=@LIBS@ -ll ++LIBS=@LIBS@ -lfl + LDFLAGS=@LDFLAGS@ + OPT= + CFLAGS=$(OPT) $(INCLUDES)