From 3fbfea1fae509bebf89728c7f8c61b39ab69e489 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Thu, 14 Oct 2010 15:24:22 +0000 Subject: - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd. --- Misc/NEWS | 5 +++++ configure.in | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 2089ceb..7fb305c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -61,6 +61,11 @@ Tools/Demos - Issue #7287: Demo/imputil/knee.py was removed. +Build +----- + +- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd. + What's New in Python 3.2 Alpha 3? ================================= diff --git a/configure.in b/configure.in index dc74743..01d81e9 100644 --- a/configure.in +++ b/configure.in @@ -3652,7 +3652,8 @@ then esac ;; CYGWIN*) SO=.dll;; - Linux*) SO=.${SOABI}.so;; + Linux*|GNU*) + SO=.${SOABI}.so;; *) SO=.so;; esac else -- cgit v0.12