mirror of
https://github.com/darlinghq/darling-python.git
synced 2024-11-23 04:09:40 +00:00
Use OpenSSL headers instead of LibreSSL
This commit is contained in:
parent
f1fa922e50
commit
7654060c81
@ -255,6 +255,7 @@ pymodule(_fileio Modules/_fileio.c)
|
||||
pymodule(_functools Modules/_functoolsmodule.c)
|
||||
pymodule(_hashlib Modules/_hashopenssl.c)
|
||||
target_link_libraries(py26__hashlib ssl098)
|
||||
target_include_directories(py26__hashlib BEFORE PRIVATE ${CMAKE_SOURCE_DIR}/src/external/openssl/src/include)
|
||||
pymodule(_heapq Modules/_heapqmodule.c)
|
||||
pymodule(_hotshot Modules/_hotshot.c)
|
||||
pymodule(_json Modules/_json.c)
|
||||
@ -266,6 +267,7 @@ pymodule(_random Modules/_randommodule.c)
|
||||
pymodule(_socket Modules/socketmodule.c)
|
||||
pymodule(_ssl Modules/_ssl.c)
|
||||
target_link_libraries(py26__ssl ssl098)
|
||||
target_include_directories(py26__ssl BEFORE PRIVATE ${CMAKE_SOURCE_DIR}/src/external/openssl/src/include)
|
||||
pymodule(_struct Modules/_struct.c)
|
||||
pymodule(_testcapi Modules/_testcapimodule.c)
|
||||
pymodule(_weakref Modules/_weakref.c)
|
||||
|
@ -262,6 +262,7 @@ set_target_properties(py27__elementtree PROPERTIES COMPILE_FLAGS "-DUSE_PYEXPAT_
|
||||
pymodule(_functools Modules/_functoolsmodule.c)
|
||||
pymodule(_hashlib Modules/_hashopenssl.c)
|
||||
target_link_libraries(py27__hashlib ssl098)
|
||||
target_include_directories(py27__hashlib BEFORE PRIVATE ${CMAKE_SOURCE_DIR}/src/external/openssl/src/include)
|
||||
pymodule(_heapq Modules/_heapqmodule.c)
|
||||
pymodule(_hotshot Modules/_hotshot.c)
|
||||
pymodule(_json Modules/_json.c)
|
||||
@ -273,6 +274,7 @@ pymodule(_random Modules/_randommodule.c)
|
||||
pymodule(_socket Modules/socketmodule.c Modules/timemodule.c)
|
||||
pymodule(_ssl Modules/_ssl.c)
|
||||
target_link_libraries(py27__ssl ssl098)
|
||||
target_include_directories(py27__ssl BEFORE PRIVATE ${CMAKE_SOURCE_DIR}/src/external/openssl/src/include)
|
||||
pymodule(_struct Modules/_struct.c)
|
||||
pymodule(_testcapi Modules/_testcapimodule.c)
|
||||
pymodule(_sqlite ${sqlite_sources})
|
||||
|
Loading…
Reference in New Issue
Block a user