Skip to content

Commit

Permalink
Fix dll name
Browse files Browse the repository at this point in the history
Reason: it was updated to openssl 3.4
  • Loading branch information
Murmele committed Jan 28, 2025
1 parent 166acbd commit a4ec697
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ if(NOT APPLE)
if(NOT USE_SYSTEM_OPENSSL)
if(WIN32)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(SSL_LIB_SUFFIX "-3-x64.dll")
set(SSL_LIB_SUFFIX "-3_4-x64.dll")
else()
set(SSL_LIB_SUFFIX "-3.dll")
set(SSL_LIB_SUFFIX "-3_4.dll")
endif()
else()
set(SSL_LIB_SUFFIX ".so.3")
set(SSL_LIB_SUFFIX ".so.3.4")
endif()

foreach(SSL_LIB_NAME ssl crypto)
Expand Down

0 comments on commit a4ec697

Please sign in to comment.