From f94c0401d0e4f122ffafad264bccd2df0d93c88b Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 15 Apr 2026 14:41:30 +0200 Subject: [PATCH] Bump OpenSSL shipped for Windows to v3.0.20 Update the OpenSSL version referenced in the Windows dev setup script and the build configuration script from v3.0.19 to v3.0.20. --- doc/win-dev.ps1 | 2 +- tools/win32/configure.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/win-dev.ps1 b/doc/win-dev.ps1 index 607a6d5f53d..2d8d84ae804 100644 --- a/doc/win-dev.ps1 +++ b/doc/win-dev.ps1 @@ -14,7 +14,7 @@ function ThrowOnNativeFailure { $VsVersion = 2022 $MsvcVersion = '14.3' $BoostVersion = @(1, 89, 0) -$OpensslVersion = '3_0_19' +$OpensslVersion = '3_0_20' switch ($Env:BITS) { 32 { } diff --git a/tools/win32/configure.ps1 b/tools/win32/configure.ps1 index 7d64341a981..220c6bc8890 100644 --- a/tools/win32/configure.ps1 +++ b/tools/win32/configure.ps1 @@ -33,7 +33,7 @@ if (-not (Test-Path env:CMAKE_ARGS)) { $env:CMAKE_ARGS = '[]' } if (-not (Test-Path env:OPENSSL_ROOT_DIR)) { - $env:OPENSSL_ROOT_DIR = "c:\local\OpenSSL_3_0_19-Win${env:BITS}" + $env:OPENSSL_ROOT_DIR = "c:\local\OpenSSL_3_0_20-Win${env:BITS}" } if (-not (Test-Path env:BOOST_ROOT)) { $env:BOOST_ROOT = "c:\local\boost_1_89_0-Win${env:BITS}"