diff options
author | Christian Heimes <christian@python.org> | 2019-04-09 16:40:12 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-04-09 16:40:12 (GMT) |
commit | 8abc3f4f91e6b523c761c7a6fa2e3405019803a1 (patch) | |
tree | fc9112d1d6f40f2b5006c03132a57ccfd88ddc12 /Misc | |
parent | bb4447897a5f141eecf42987a1191a3330c5d7ed (diff) | |
download | cpython-8abc3f4f91e6b523c761c7a6fa2e3405019803a1.zip cpython-8abc3f4f91e6b523c761c7a6fa2e3405019803a1.tar.gz cpython-8abc3f4f91e6b523c761c7a6fa2e3405019803a1.tar.bz2 |
bpo-36577: setup.py reports missing OpenSSL again (GH-12746)
[bpo-36146](https://bugs.python.org/issue36146) introduced another regression. In case of missing OpenSSL
libraries or headers, setup.py no longer reported _hashlib and _ssl to
be missing.
Signed-off-by: Christian Heimes <christian@python.org>
https://bugs.python.org/issue36577
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-04-09-17-31-47.bpo-36577.34kuUW.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-04-09-17-31-47.bpo-36577.34kuUW.rst b/Misc/NEWS.d/next/Build/2019-04-09-17-31-47.bpo-36577.34kuUW.rst new file mode 100644 index 0000000..58c0151 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-04-09-17-31-47.bpo-36577.34kuUW.rst @@ -0,0 +1 @@ +setup.py now correctly reports missing OpenSSL headers and libraries again. |