Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-36544 : Fix regression introduced in bpo-36146 #12708

Merged
merged 1 commit into from Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1 @@
Fix regression introduced in bpo-36146 refactoring setup.py
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -1642,6 +1642,7 @@ def detect_modules(self):
self.detect_crypt()
self.detect_socket()
self.detect_openssl_hashlib()
self.detect_hash_builtins()
self.detect_dbm_gdbm()
self.detect_sqlite()
self.detect_platform_specific_exts()
Expand Down Expand Up @@ -2187,6 +2188,7 @@ def split_var(name, sep):
library_dirs=openssl_libdirs,
libraries=openssl_libs))

def detect_hash_builtins(self):
# We always compile these even when OpenSSL is available (issue #14693).
# It's harmless and the object code is tiny (40-50 KiB per module,
# only loaded when actually used).
Expand Down