]> granicus.if.org Git - python/commitdiff
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
authorMatthias Klose <doko@ubuntu.com>
Thu, 14 Oct 2010 15:24:22 +0000 (15:24 +0000)
committerMatthias Klose <doko@ubuntu.com>
Thu, 14 Oct 2010 15:24:22 +0000 (15:24 +0000)
Misc/NEWS
configure.in

index 2089ceb24c248e6f12f00ee57aa9fc08b9789db4..7fb305c2adc007e74bbed48402624e1892089f06 100644 (file)
--- 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?
 =================================
index dc74743c14f3c419f960580832913b45c698e17c..01d81e9671196280ee44a965a455503aee8015c5 100644 (file)
@@ -3652,7 +3652,8 @@ then
                esac
                ;;
        CYGWIN*)   SO=.dll;;
-       Linux*)    SO=.${SOABI}.so;;
+       Linux*|GNU*)
+                  SO=.${SOABI}.so;;
        *)         SO=.so;;
        esac
 else