summaryrefslogtreecommitdiff
path: root/lang/python23/patches
diff options
context:
space:
mode:
authorminskim <minskim>2004-12-30 21:56:20 +0000
committerminskim <minskim>2004-12-30 21:56:20 +0000
commit31211d7decf507968334baa3394eb38a4933d43e (patch)
tree3c58708ca57a2a5ccd85efb4ce9df4421b020eb8 /lang/python23/patches
parent84b102b59b3a16f535cef999748998911cc17df0 (diff)
downloadpkgsrc-31211d7decf507968334baa3394eb38a4933d43e.tar.gz
Honor LDFLAGS when building shared libraries on Linux. Previously,
python2[34]{,-pth} failed on Linux when Berkeley DB from pkgsrc was used.
Diffstat (limited to 'lang/python23/patches')
-rw-r--r--lang/python23/patches/patch-al25
1 files changed, 14 insertions, 11 deletions
diff --git a/lang/python23/patches/patch-al b/lang/python23/patches/patch-al
index 432450c2bdd..e8192edfc4d 100644
--- a/lang/python23/patches/patch-al
+++ b/lang/python23/patches/patch-al
@@ -1,8 +1,8 @@
-$NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
+$NetBSD: patch-al,v 1.9 2004/12/30 21:56:21 minskim Exp $
---- configure.orig Fri May 7 21:13:40 2004
-+++ configure Thu Nov 25 13:20:20 2004
-@@ -1440,6 +1440,8 @@
+--- configure.orig 2004-05-07 14:13:40.000000000 -0500
++++ configure
+@@ -1440,6 +1440,8 @@ case $ac_sys_system/$ac_sys_release in
# Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
OpenBSD/2.* | OpenBSD/3.[01234])
define_xopen_source=no;;
@@ -11,7 +11,7 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
# On Solaris 2.6, sys/wait.h is inconsistent in the usage
# of union __?sigval. Reported by Stuart Bishop.
SunOS/5.6)
-@@ -3603,7 +3605,7 @@
+@@ -3603,7 +3605,7 @@ _ACEOF
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
INSTSONAME="$LDLIBRARY".$SOVERSION
;;
@@ -20,7 +20,7 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
-@@ -3624,6 +3626,14 @@
+@@ -3624,6 +3626,14 @@ _ACEOF
BLDLIBRARY='-L. -lpython$(VERSION)'
RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib}
;;
@@ -35,7 +35,7 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
esac
# DG/UX requires some fancy ld contortions to produce a .so from an .a
case $MACHDEP in
-@@ -4021,7 +4031,12 @@
+@@ -4021,7 +4031,12 @@ echo "${ECHO_T}$ac_cv_no_strict_aliasing
;;
# is there any other compiler on Darwin besides gcc?
Darwin*)
@@ -49,7 +49,7 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
;;
esac
;;
-@@ -10082,7 +10097,7 @@
+@@ -10082,7 +10097,7 @@ then
LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
else
# No framework. Ignore undefined symbols, assuming they come from Python
@@ -58,7 +58,7 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
fi ;;
Darwin/*)
LDSHARED='$(CC) $(LDFLAGS) -bundle'
-@@ -10091,8 +10106,8 @@
+@@ -10091,10 +10106,10 @@ then
LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
else
# No framework, use the Python app as bundle-loader
@@ -67,9 +67,12 @@ $NetBSD: patch-al,v 1.8 2004/11/28 13:33:19 recht Exp $
+ BLDSHARED="$LDSHARED "'-flat_namespace -undefined suppress -bundle_loader $(BUILDPYTHON)'
+ LDSHARED="$LDSHARED "'-flat_namespace -undefined suppress -bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
fi ;;
- Linux*|GNU*) LDSHARED='$(CC) -shared';;
+- Linux*|GNU*) LDSHARED='$(CC) -shared';;
++ Linux*|GNU*) LDSHARED='$(CC) -shared ${LDFLAGS}';;
dgux*) LDSHARED="ld -G";;
-@@ -13855,6 +13870,7 @@
+ BSD/OS*/4*) LDSHARED="gcc -shared";;
+ OpenBSD*|FreeBSD*)
+@@ -13855,6 +13870,7 @@ cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#include "confdefs.h"