diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2004-02-09 09:54:07 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2004-02-09 09:54:07 +0000 |
commit | d3a457db41524eef0d8bc9b8d54445b7b1163433 (patch) | |
tree | 11b78305919b6a74f7e60603763cf8515c613c01 /lang/python/files/patch-configure | |
parent | Update to 0.83.2 release. (diff) |
- Use process scope threads instead of system scope to enable large
amount of threads on -CURRENT libpthread by default. [1]
- Merge bugfixes from python 2.3 maintenance branch: [2]
o weakref object's garbage collection problem.
o save unnecessary startup-time memory allocation of 100KB+ from
intobject.
- SIZEify.
- Bump PORTREVISION subsequently.
Advised by: eischen, julian [1]
Obtained from: Python CVS [2]
Notes
Notes:
svn path=/head/; revision=100480
Diffstat (limited to 'lang/python/files/patch-configure')
-rw-r--r-- | lang/python/files/patch-configure | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/lang/python/files/patch-configure b/lang/python/files/patch-configure index 6ee47894e12f..ef9326985205 100644 --- a/lang/python/files/patch-configure +++ b/lang/python/files/patch-configure @@ -1,5 +1,5 @@ ---- configure.orig Sat Oct 4 13:27:50 2003 -+++ configure Sat Oct 4 13:29:05 2003 +--- configure.orig Wed Nov 19 04:59:36 2003 ++++ configure Mon Feb 9 17:39:34 2004 @@ -1321,7 +1321,7 @@ VERSION=2.3 @@ -9,16 +9,25 @@ # The later defininition of _XOPEN_SOURCE disables certain features # on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone). -@@ -3594,6 +3594,12 @@ - LDLIBRARY='libpython$(VERSION).so' - BLDLIBRARY='-L. -lpython$(VERSION)' +@@ -3608,6 +3608,12 @@ RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} -+ INSTSONAME="$LDLIBRARY".$SOVERSION -+ ;; + INSTSONAME="$LDLIBRARY".$SOVERSION + ;; + FreeBSD*) + LDLIBRARY='libpython$(VERSION).so' + BLDLIBRARY='-L. -lpython$(VERSION)' + RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH - INSTSONAME="$LDLIBRARY".$SOVERSION - ;; ++ INSTSONAME="$LDLIBRARY".$SOVERSION ++ ;; hp*|HP*) + LDLIBRARY='libpython$(VERSION).sl' + BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(VERSION)' +@@ -12272,7 +12278,7 @@ + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +- ac_cv_pthread_system_supported=yes ++ ac_cv_pthread_system_supported="ignored by port" + else + echo "$as_me: program exited with status $ac_status" >&5 + echo "$as_me: failed program was:" >&5 |