]> granicus.if.org Git - python/commitdiff
Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
authorCharles-François Natali <neologix@free.fr>
Sun, 24 Jul 2011 20:33:35 +0000 (22:33 +0200)
committerCharles-François Natali <neologix@free.fr>
Sun, 24 Jul 2011 20:33:35 +0000 (22:33 +0200)
Misc/ACKS
Misc/NEWS
configure
configure.in

index 65490db2961b201095699b7f30bb05061a1301ef..0958490d6d6b95ae9f2722f85065bd2081777aa6 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -771,6 +771,7 @@ Dirk Soede
 Paul Sokolovsky
 Cody Somerville
 Clay Spence
+Stefan Sperling
 Per Spilling
 Joshua Spoerri
 Noah Spurrier
index 8ee72218d0d013ae9cce1274395be0e83dec1dba..9f18a610936b8704780ba962265d7321d7a6b55c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.
+
 - Issue #1813: Fix codec lookup and setting/getting locales under Turkish
   locales.
 
index f355e447f14104d292a41ac37e7f7a4a8a94108c..3af5eeb3541278edc524b547c317ad35af9ae0fd 100755 (executable)
--- a/configure
+++ b/configure
@@ -4919,7 +4919,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
          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}
index a0705ac3d74ef80c8ca66285f16edc5bcd65cd40..139b21b4f1011b4b184de73f8d47ca02a45fc5e2 100644 (file)
@@ -778,7 +778,7 @@ if test $enable_shared = "yes"; then
          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}