[Python-checkins] cpython (merge 3.2 -> default): Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.

charles-francois.natali python-checkins at python.org
Sun Jul 24 22:43:58 CEST 2011


http://hg.python.org/cpython/rev/a095cbed24c3
changeset:   71495:a095cbed24c3
parent:      71491:fe0caf8c48d2
parent:      71494:1fdad36ac838
user:        Charles-François Natali <neologix at free.fr>
date:        Sun Jul 24 22:44:15 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
@@ -885,6 +885,7 @@
 Cody Somerville
 Edoardo Spadolini
 Clay Spence
+Stefan Sperling
 Per Spilling
 Joshua Spoerri
 Noah Spurrier
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,8 @@
 Library
 -------
 
+- Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
+
 - Issue #1813: Fix codec lookup under Turkish locales.
 
 - Issue #12591: Improve support of "universal newlines" in the subprocess
diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -5005,7 +5005,7 @@
 	      PY3LIBRARY=libpython3.so
 	  fi
           ;;
-    Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
+    Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
 	  LDLIBRARY='libpython$(LDVERSION).so'
 	  BLDLIBRARY='-L. -lpython$(LDVERSION)'
 	  RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
diff --git a/configure.in b/configure.in
--- a/configure.in
+++ b/configure.in
@@ -769,7 +769,7 @@
 	      PY3LIBRARY=libpython3.so
 	  fi
           ;;
-    Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
+    Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
 	  LDLIBRARY='libpython$(LDVERSION).so'
 	  BLDLIBRARY='-L. -lpython$(LDVERSION)'
 	  RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list