Skip to content

Commit a4ec697

Browse files
committed
Fix dll name
Reason: it was updated to openssl 3.4
1 parent 166acbd commit a4ec697

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pack/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ if(NOT APPLE)
161161
if(NOT USE_SYSTEM_OPENSSL)
162162
if(WIN32)
163163
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
164-
set(SSL_LIB_SUFFIX "-3-x64.dll")
164+
set(SSL_LIB_SUFFIX "-3_4-x64.dll")
165165
else()
166-
set(SSL_LIB_SUFFIX "-3.dll")
166+
set(SSL_LIB_SUFFIX "-3_4.dll")
167167
endif()
168168
else()
169-
set(SSL_LIB_SUFFIX ".so.3")
169+
set(SSL_LIB_SUFFIX ".so.3.4")
170170
endif()
171171

172172
foreach(SSL_LIB_NAME ssl crypto)

0 commit comments

Comments
 (0)