From: Charles-François Natali Date: Sun, 24 Jul 2011 20:41:18 +0000 (+0200) Subject: Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. X-Git-Tag: v3.2.2rc1~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=749400a94d78bb714a8964c21f8979ab6b070708;p=python Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. --- diff --git a/Misc/ACKS b/Misc/ACKS index 9ac162f8fb..4a2c06e620 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -829,6 +829,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 4513f9aec0..3fcdc9600c 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 under Turkish locales. - Issue #12591: Improve support of "universal newlines" in the subprocess diff --git a/configure b/configure index 21c9d1703c..3563be5ac1 100755 --- a/configure +++ b/configure @@ -4950,7 +4950,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h 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 index c439d5af06..5a411fe367 100644 --- a/configure.in +++ b/configure.in @@ -755,7 +755,7 @@ if test $enable_shared = "yes"; then 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}