Skip to content

Commit 4cd4d08

Browse files
Fix packaging for windows deploying old OpenSSL DLLs
1 parent b96f21a commit 4cd4d08

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
@@ -149,12 +149,12 @@ if(NOT FLATPAK)
149149
if(NOT APPLE)
150150
if(WIN32)
151151
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
152-
set(SSL_LIB_SUFFIX "-1_1-x64.dll")
152+
set(SSL_LIB_SUFFIX "-3-x64.dll")
153153
else()
154-
set(SSL_LIB_SUFFIX "-1_1.dll")
154+
set(SSL_LIB_SUFFIX "-3.dll")
155155
endif()
156156
else()
157-
set(SSL_LIB_SUFFIX ".so.1.1")
157+
set(SSL_LIB_SUFFIX ".so.3")
158158
endif()
159159

160160
foreach(SSL_LIB_NAME ssl crypto)

0 commit comments

Comments
 (0)