Kaydet (Commit) 3fbfea1f authored tarafından Matthias Klose's avatar Matthias Klose

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

üst b1c54967
...@@ -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