Commit 3fbfea1f authored by Matthias Klose's avatar Matthias Klose

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

parent b1c54967
......@@ -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?
=================================
......
......@@ -3652,7 +3652,8 @@ then
esac
;;
CYGWIN*) SO=.dll;;
Linux*) SO=.${SOABI}.so;;
Linux*|GNU*)
SO=.${SOABI}.so;;
*) SO=.so;;
esac
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