From: Charles-François Natali Date: Sun, 24 Jul 2011 20:33:35 +0000 (+0200) Subject: Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3de8c73d90f5aaf8ea8d93af49f88950b02de8e6;p=python Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. --- diff --git a/Misc/ACKS b/Misc/ACKS index 65490db296..0958490d6d 100644 --- 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 diff --git a/Misc/NEWS b/Misc/NEWS index 8ee72218d0..9f18a61093 100644 --- 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. diff --git a/configure b/configure index f355e447f1..3af5eeb354 100755 --- 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} diff --git a/configure.in b/configure.in index a0705ac3d7..139b21b4f1 100644 --- a/configure.in +++ b/configure.in @@ -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}