From fc7e89261c59c1c69564ad99071a1a19e4629846 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 11 Dec 2025 10:47:51 +0100 Subject: [PATCH] Bump Boost shipped for Windows to v1.90 --- doc/win-dev.ps1 | 2 +- tools/win32/configure-dev.ps1 | 4 ++-- tools/win32/configure.ps1 | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/win-dev.ps1 b/doc/win-dev.ps1 index 9dbffa48b..3b31ea6ac 100644 --- a/doc/win-dev.ps1 +++ b/doc/win-dev.ps1 @@ -13,7 +13,7 @@ function ThrowOnNativeFailure { $VsVersion = 2022 $MsvcVersion = '14.3' -$BoostVersion = @(1, 89, 0) +$BoostVersion = @(1, 90, 0) $OpensslVersion = '3_0_18' switch ($Env:BITS) { diff --git a/tools/win32/configure-dev.ps1 b/tools/win32/configure-dev.ps1 index 875065332..724b29e1f 100644 --- a/tools/win32/configure-dev.ps1 +++ b/tools/win32/configure-dev.ps1 @@ -34,10 +34,10 @@ if (-not (Test-Path env:OPENSSL_ROOT_DIR)) { $env:OPENSSL_ROOT_DIR = 'c:\local\OpenSSL-Win64' } if (-not (Test-Path env:BOOST_ROOT)) { - $env:BOOST_ROOT = 'c:\local\boost_1_89_0' + $env:BOOST_ROOT = 'c:\local\boost_1_90_0' } if (-not (Test-Path env:BOOST_LIBRARYDIR)) { - $env:BOOST_LIBRARYDIR = 'c:\local\boost_1_89_0\lib64-msvc-14.3' + $env:BOOST_LIBRARYDIR = 'c:\local\boost_1_90_0\lib64-msvc-14.3' } if (-not (Test-Path env:FLEX_BINARY)) { $env:FLEX_BINARY = 'C:\ProgramData\chocolatey\bin\win_flex.exe' diff --git a/tools/win32/configure.ps1 b/tools/win32/configure.ps1 index bdce84989..07c057c8f 100644 --- a/tools/win32/configure.ps1 +++ b/tools/win32/configure.ps1 @@ -36,10 +36,10 @@ if (-not (Test-Path env:OPENSSL_ROOT_DIR)) { $env:OPENSSL_ROOT_DIR = "c:\local\OpenSSL_3_0_18-Win${env:BITS}" } if (-not (Test-Path env:BOOST_ROOT)) { - $env:BOOST_ROOT = "c:\local\boost_1_89_0-Win${env:BITS}" + $env:BOOST_ROOT = "c:\local\boost_1_90_0-Win${env:BITS}" } if (-not (Test-Path env:BOOST_LIBRARYDIR)) { - $env:BOOST_LIBRARYDIR = "c:\local\boost_1_89_0-Win${env:BITS}\lib${env:BITS}-msvc-14.3" + $env:BOOST_LIBRARYDIR = "c:\local\boost_1_90_0-Win${env:BITS}\lib${env:BITS}-msvc-14.3" } if (-not (Test-Path env:FLEX_BINARY)) { $env:FLEX_BINARY = 'C:\ProgramData\chocolatey\bin\win_flex.exe'