Skip to content

Commit e6761a3

Browse files
authored
Merge pull request #9 from PowerShell/revert-8-change-libressl-version
Revert "compile with LibreSSL 3.5.3"
2 parents 3c44611 + d1f5ff9 commit e6761a3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ if(MSVC)
171171
endif()
172172
set(CBOR_LIBRARIES cbor)
173173
set(ZLIB_LIBRARIES zlib1)
174-
set(CRYPTO_LIBRARIES crypto-49)
174+
set(CRYPTO_LIBRARIES crypto-50)
175175
set(MSVC_DISABLED_WARNINGS_LIST
176176
"C4152" # nonstandard extension used: function/data pointer
177177
# conversion in expression;

windows/ms_const.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# license that can be found in the LICENSE file.
44

55
# LibreSSL coordinates.
6-
New-Variable -Name 'LIBRESSL' -Value 'libressl-3.5.3' -Option Constant
7-
New-Variable -Name 'LIBRESSL_BIN_URL' -Value 'https://github.com/PowerShell/LibreSSL/releases/download/V3.5.3.0/LibreSSL.zip' -Option Constant
6+
New-Variable -Name 'LIBRESSL' -Value 'libressl-3.6.1' -Option Constant
7+
New-Variable -Name 'LIBRESSL_BIN_URL' -Value 'https://github.com/PowerShell/LibreSSL/releases/download/V3.6.1.0/LibreSSL.zip' -Option Constant
88

99
# libcbor coordinates.
1010
New-Variable -Name 'LIBCBOR' -Value 'libcbor' -Option Constant

windows/ms_release.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $Architectures = @('x64', 'Win32', 'ARM64', 'ARM')
77
$InstallPrefixes = @('Win64', 'Win32', 'ARM64', 'ARM')
88
$Types = @('static')
99
$Config = 'Release'
10-
$LibCrypto = '49'
10+
$LibCrypto = '50'
1111
$SDK = '142'
1212

1313
. "$PSScriptRoot\ms_const.ps1"

0 commit comments

Comments
 (0)