bpo-43788: Generate version specific _ssl_data.h (GH-25300)

Signed-off-by: Christian Heimes <christian@python.org>

Automerge-Triggered-By: GH:tiran
This commit is contained in:
Christian Heimes 2021-04-09 17:02:00 +02:00 committed by GitHub
parent 5151d64200
commit 150af75432
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 15092 additions and 82 deletions

View file

@ -2467,7 +2467,13 @@ class PyBuildExt(build_ext):
Extension(
'_ssl',
['_ssl.c'],
depends=['socketmodule.h', '_ssl/debughelpers.c'],
depends=[
'socketmodule.h',
'_ssl/debughelpers.c',
'_ssl_data.h',
'_ssl_data_111.h',
'_ssl_data_300.h',
],
**openssl_extension_kwargs
)
)