Skip to content

Commit

Permalink
bpo-36544 : Fix regression introduced in bpo-36146 (GH-12708)
Browse files Browse the repository at this point in the history
  • Loading branch information
xdegaye authored and miss-islington committed Apr 9, 2019
1 parent 56065d4 commit 2ee077f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix regression introduced in bpo-36146 refactoring setup.py
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
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 @@ -2184,6 +2185,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

0 comments on commit 2ee077f

Please sign in to comment.