summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-10-14 15:24:22 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-10-14 15:24:22 (GMT)
commit3fbfea1fae509bebf89728c7f8c61b39ab69e489 (patch)
tree95e77e20e55fec5a71e1c919d322fe9954da9db1 /configure.in
parentb1c54967381062bccef7db574b8e84f48a0eca76 (diff)
downloadcpython-3fbfea1fae509bebf89728c7f8c61b39ab69e489.zip
cpython-3fbfea1fae509bebf89728c7f8c61b39ab69e489.tar.gz
cpython-3fbfea1fae509bebf89728c7f8c61b39ab69e489.tar.bz2
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index dc74743..01d81e9 100644
--- a/configure.in
+++ b/configure.in
@@ -3652,7 +3652,8 @@ then
esac
;;
CYGWIN*) SO=.dll;;
- Linux*) SO=.${SOABI}.so;;
+ Linux*|GNU*)
+ SO=.${SOABI}.so;;
*) SO=.so;;
esac
else