summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-03-21 20:21:49 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2013-03-21 20:21:49 (GMT)
commitd5537d071cc2acada7220431a0eea5931c2e8a2d (patch)
treeeba2ec8207b84f178068d4f86942e962113d7689 /Misc
parent03b0116c781f8b2b530c2452d25d9a372c8f3635 (diff)
downloadcpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.zip
cpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.tar.gz
cpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.tar.bz2
- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
-rw-r--r--Misc/python-config.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 20ffcc9..2d7bf7e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1073,6 +1073,10 @@ Tests
Build
-----
+- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
+ two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
+ SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
+
- Issue #5033: Fix building of the sqlite3 extension module when the
SQLite library version has "beta" in it. Patch by Andreas Pelme.
diff --git a/Misc/python-config.in b/Misc/python-config.in
index 79f0bb1..0efaa43 100644
--- a/Misc/python-config.in
+++ b/Misc/python-config.in
@@ -57,7 +57,7 @@ for opt in opt_flags:
print(' '.join(libs))
elif opt == '--extension-suffix':
- print(sysconfig.get_config_var('SO'))
+ print(sysconfig.get_config_var('EXT_SUFFIX'))
elif opt == '--abiflags':
print(sys.abiflags)