diff options
author | Christian Heimes <christian@python.org> | 2021-11-23 21:58:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 21:58:13 (GMT) |
commit | b9e9292d75fdea621e05e39b8629e6935d282d0d (patch) | |
tree | a6bfd78173b8e8ddb9c4e7b09aae9401ae38fd74 /Modules | |
parent | 095bc8f0d6845dded8f67fbc6eca20dfac8b3929 (diff) | |
download | cpython-b9e9292d75fdea621e05e39b8629e6935d282d0d.zip cpython-b9e9292d75fdea621e05e39b8629e6935d282d0d.tar.gz cpython-b9e9292d75fdea621e05e39b8629e6935d282d0d.tar.bz2 |
bpo-45847: Port _ssl and _hashlib to PY_STDLIB_MOD (GH-29727)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.stdlib.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Setup.stdlib.in b/Modules/Setup.stdlib.in index 7422ddb..9f66d53 100644 --- a/Modules/Setup.stdlib.in +++ b/Modules/Setup.stdlib.in @@ -123,6 +123,11 @@ # @MODULE__SQLITE3_TRUE@_sqlite3 _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c +# needs -lssl and -lcrypt +@MODULE__SSL_TRUE@_ssl _ssl.c +# needs -lcrypt +@MODULE__HASHLIB_TRUE@_hashlib _hashopenssl.c + ############################################################################ # macOS specific modules |