From: Mateusz Korniak Date: Wed, 16 Oct 2002 14:32:17 +0000 (+0000) Subject: - Fixes configure.in (different in PLD than oryginal python) static lib layout. X-Git-Tag: auto/ac/apache-mod_python-3_1_2b-1~29 X-Git-Url: https://git.pld-linux.org/?p=packages%2Fapache-mod_python.git;a=commitdiff_plain;h=594e0805eae2b9ef0e969121cf0c9250eadc3125 - Fixes configure.in (different in PLD than oryginal python) static lib layout. Changed files: apache-mod_python-static-lib-dir-fix.patch -> 1.1 --- diff --git a/apache-mod_python-static-lib-dir-fix.patch b/apache-mod_python-static-lib-dir-fix.patch new file mode 100644 index 0000000..ad17e8d --- /dev/null +++ b/apache-mod_python-static-lib-dir-fix.patch @@ -0,0 +1,12 @@ +--- mod_python-2.7.8/configure.in Mon Jun 11 21:16:25 2001 ++++ mod_python-2.7.8.new/configure.in Wed Oct 16 16:11:36 2002 +@@ -242,7 +242,8 @@ + if test -z "$PYTHON_SRC"; then + PyLIBP=${PyEXEC_INSTALLDIR}/lib/python${PyVERSION} + PyLIBPL=${PyLIBP}/config +- PyPYTHONLIBS=${PyLIBPL}/libpython${PyVERSION}.a ++ # PyPYTHONLIBS=${PyLIBPL}/libpython${PyVERSION}.a ++ PyPYTHONLIBS=/usr/lib/libpython${PyVERSION}.a + PyLIBS=`grep "^LIB[[SMC]]=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '` + PyMODLIBS=`grep "^LOCALMODLIBS=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '` + PY_LIBS="${PyPYTHONLIBS} ${PyLIBS} ${PyMODLIBS}"