Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fbfea1

Browse files
committed
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
1 parent b1c5496 commit 3fbfea1

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ Tools/Demos
6161

6262
- Issue #7287: Demo/imputil/knee.py was removed.
6363

64+
Build
65+
-----
66+
67+
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
68+
6469

6570
What's New in Python 3.2 Alpha 3?
6671
=================================

configure.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3652,7 +3652,8 @@ then
36523652
esac
36533653
;;
36543654
CYGWIN*) SO=.dll;;
3655-
Linux*) SO=.${SOABI}.so;;
3655+
Linux*|GNU*)
3656+
SO=.${SOABI}.so;;
36563657
*) SO=.so;;
36573658
esac
36583659
else

0 commit comments

Comments
 (0)