Skip to content

Commit

Permalink
Fix: Adapt patch to newest LibreSSL ersion
Browse files Browse the repository at this point in the history
  • Loading branch information
ccvca committed Dec 8, 2023
1 parent 983bcca commit 1c62ff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/ciPatches/libressl-no_postfix.patch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ index b1ded85..50f934a 100644
export_symbol(crypto ${CMAKE_CURRENT_BINARY_DIR}/crypto_p.sym)
target_link_libraries(crypto ${PLATFORM_LIBS})
if (WIN32)
- set(CRYPTO_POSTFIX -${CRYPTO_MAJOR_VERSION})
- set(CRYPTO_POSTFIX -${CRYPTO_MAJOR_VERSION} PARENT_SCOPE)
+ set(CRYPTO_POSTFIX "")
endif()
set_target_properties(crypto PROPERTIES
Expand All @@ -19,7 +19,7 @@ index 3310931..0066bff 100644
export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym)
target_link_libraries(ssl crypto ${PLATFORM_LIBS})
if (WIN32)
- set(SSL_POSTFIX -${SSL_MAJOR_VERSION})
- set(SSL_POSTFIX -${SSL_MAJOR_VERSION} PARENT_SCOPE)
+ set(SSL_POSTFIX "")
endif()
set_target_properties(ssl PROPERTIES
Expand All @@ -32,7 +32,7 @@ index 9aa10e1..c0547b2 100644
export_symbol(tls ${CMAKE_CURRENT_BINARY_DIR}/tls.sym)
target_link_libraries(tls ${PLATFORM_LIBS})
if (WIN32)
- set(TLS_POSTFIX -${TLS_MAJOR_VERSION})
- set(TLS_POSTFIX -${TLS_MAJOR_VERSION} PARENT_SCOPE)
+ set(TLS_POSTFIX "")
endif()
set_target_properties(tls PROPERTIES
Expand Down

0 comments on commit 1c62ff8

Please sign in to comment.