Skip to content

Commit 406625d

Browse files
win32_deps_bild: bump openssl version
The Windows build is using a very old OpenSSL version (1.1.1c), we'll bump the version to 3.0.16. Signed-off-by: Lucian Petrut <[email protected]>
1 parent 3095ee1 commit 406625d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

win32_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ if [[ -z $SKIP_DLL_COPY ]]; then
233233
required_dlls=(
234234
$zlibDir/zlib1.dll
235235
$lz4Dir/lib/dll/liblz4-1.dll
236-
$sslDir/bin/libcrypto-1_1-x64.dll
237-
$sslDir/bin/libssl-1_1-x64.dll
236+
$sslDir/bin/libcrypto-3-x64.dll
237+
$sslDir/bin/libssl-3-x64.dll
238238
$mingwLibpthreadDir/libwinpthread-1.dll)
239239
if [[ $ENABLE_SHARED == "ON" ]]; then
240240
required_dlls+=(

win32_deps_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ depsToolsetDir="$DEPS_DIR/mingw"
1111
lz4SrcDir="${depsSrcDir}/lz4"
1212
lz4Dir="${depsToolsetDir}/lz4"
1313
lz4Tag="v1.9.2"
14-
sslTag="OpenSSL_1_1_1c"
14+
sslTag="openssl-3.0.16"
1515
sslDir="${depsToolsetDir}/openssl"
1616
sslSrcDir="${depsSrcDir}/openssl"
1717

0 commit comments

Comments
 (0)