From abe6720676a649fe04b9ed2d322dd0824fcad2a9 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 18 Dec 2025 12:13:02 +0100 Subject: [PATCH] Bump OpenSSL shipped for Windows to v3.5 LTS --- 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 88ad9842b..8234819cd 100644 --- a/doc/win-dev.ps1 +++ b/doc/win-dev.ps1 @@ -14,7 +14,7 @@ function ThrowOnNativeFailure { $VsVersion = 2022 $MsvcVersion = '14.3' $BoostVersion = @(1, 90, 0) -$OpensslVersion = '3_0_19' +$OpensslVersion = '3_5_5' switch ($Env:BITS) { 32 { } diff --git a/tools/win32/configure.ps1 b/tools/win32/configure.ps1 index d0b3175e1..49cecb5e8 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_5_5-Win${env:BITS}" } if (-not (Test-Path env:BOOST_ROOT)) { $env:BOOST_ROOT = "c:\local\boost_1_90_0-Win${env:BITS}"