mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
* Updating abseil-cpp to version of 14th April 2022 that supports OpenBSD/adJ * Not using dl in OpenBSD/adJ
This commit is contained in:
parent
7fcfc63d06
commit
f7041cb44f
2 changed files with 7 additions and 2 deletions
|
@ -275,7 +275,12 @@ target_include_directories(ton_crypto PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_S
|
|||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>)
|
||||
target_link_libraries(ton_crypto PUBLIC ${OPENSSL_CRYPTO_LIBRARY} tdutils tddb_utils)
|
||||
if (NOT WIN32)
|
||||
find_library(DL dl)
|
||||
if (DL)
|
||||
target_link_libraries(ton_crypto PUBLIC dl z)
|
||||
else()
|
||||
target_link_libraries(ton_crypto PUBLIC z)
|
||||
endif()
|
||||
endif()
|
||||
target_include_directories(ton_crypto SYSTEM PUBLIC $<BUILD_INTERFACE:${OPENSSL_INCLUDE_DIR}>)
|
||||
|
||||
|
|
2
third-party/abseil-cpp
vendored
2
third-party/abseil-cpp
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 215105818dfde3174fe799600bb0f3cae233d0bf
|
||||
Subproject commit 8c6e53ef3adb1227fffa442c50349dab134a54bc
|
Loading…
Reference in a new issue