Commit 52221eae authored by Matthias Klose's avatar Matthias Klose

- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.

parent 0c3ff74c
...@@ -61,6 +61,11 @@ Tools/Demos ...@@ -61,6 +61,11 @@ Tools/Demos
- Issue #7287: Demo/imputil/knee.py was removed. - 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? What's New in Python 3.2 Alpha 3?
================================= =================================
......
...@@ -3652,7 +3652,8 @@ then ...@@ -3652,7 +3652,8 @@ then
esac esac
;; ;;
CYGWIN*) SO=.dll;; CYGWIN*) SO=.dll;;
Linux*) SO=.${SOABI}.so;; Linux*|GNU*)
SO=.${SOABI}.so;;
*) SO=.so;; *) SO=.so;;
esac esac
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment