Skip to content

Commit

Permalink
use correct openssl version
Browse files Browse the repository at this point in the history
  • Loading branch information
Murmele committed Nov 4, 2024
1 parent 15a05c7 commit 1121015
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 @@ -156,12 +156,12 @@ if(NOT APPLE)
if(NOT USE_SYSTEM_OPENSSL)
if(WIN32)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(SSL_LIB_SUFFIX "-1_1-x64.dll")
set(SSL_LIB_SUFFIX "-3_4-x64.dll")
else()
set(SSL_LIB_SUFFIX "-1_1.dll")
set(SSL_LIB_SUFFIX "-3_4.dll")
endif()
else()
set(SSL_LIB_SUFFIX ".so.1.1")
set(SSL_LIB_SUFFIX ".so.3.4")
endif()

foreach(SSL_LIB_NAME ssl crypto)
Expand Down

0 comments on commit 1121015

Please sign in to comment.