diff options
author | Christian Heimes <christian@python.org> | 2018-02-25 09:22:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-25 09:22:14 (GMT) |
commit | 5bb9692575f10f4a7c7f1c2c0c70956baf6d5c23 (patch) | |
tree | 5738108873b903fcf86a378077012a99f74bda72 /Misc | |
parent | b7b9225831a729bff84eb7c43bad138416b994fe (diff) | |
download | cpython-5bb9692575f10f4a7c7f1c2c0c70956baf6d5c23.zip cpython-5bb9692575f10f4a7c7f1c2c0c70956baf6d5c23.tar.gz cpython-5bb9692575f10f4a7c7f1c2c0c70956baf6d5c23.tar.bz2 |
bpo-32647: Link ctypes extension with libdl. (#5550)
The ctypes module used to depend on indirect linking for dlopen. The shared
extension is now explicitly linked against libdl on platforms with dl.
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-02-05-13-31-42.bpo-32647.ktmfR_.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-05-13-31-42.bpo-32647.ktmfR_.rst b/Misc/NEWS.d/next/Library/2018-02-05-13-31-42.bpo-32647.ktmfR_.rst new file mode 100644 index 0000000..04fc024 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-02-05-13-31-42.bpo-32647.ktmfR_.rst @@ -0,0 +1,2 @@ +The ctypes module used to depend on indirect linking for dlopen. The shared +extension is now explicitly linked against libdl on platforms with dl. |