[Python-checkins] cpython (2.7): Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
charles-francois.natali
python-checkins at python.org
Sun Jul 24 22:33:30 CEST 2011
http://hg.python.org/cpython/rev/33be4896003a
changeset: 71493:33be4896003a
branch: 2.7
user: Charles-François Natali <neologix at free.fr>
date: Sun Jul 24 22:33:35 2011 +0200
summary:
Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
files:
Misc/ACKS | 1 +
Misc/NEWS | 2 ++
configure | 2 +-
configure.in | 2 +-
4 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -771,6 +771,7 @@
Paul Sokolovsky
Cody Somerville
Clay Spence
+Stefan Sperling
Per Spilling
Joshua Spoerri
Noah Spurrier
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,8 @@
Library
-------
+- Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
+
- Issue #1813: Fix codec lookup and setting/getting locales under Turkish
locales.
diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -4919,7 +4919,7 @@
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
INSTSONAME="$LDLIBRARY".$SOVERSION
;;
- Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
+ Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
diff --git a/configure.in b/configure.in
--- a/configure.in
+++ b/configure.in
@@ -778,7 +778,7 @@
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
INSTSONAME="$LDLIBRARY".$SOVERSION
;;
- Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
+ Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
LDLIBRARY='libpython$(VERSION).so'
BLDLIBRARY='-L. -lpython$(VERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list