Skip to content

Commit

Permalink
Merge pull request #9 from PowerShell/revert-8-change-libressl-version
Browse files Browse the repository at this point in the history
Revert "compile with LibreSSL 3.5.3"
  • Loading branch information
tgauth authored Nov 30, 2022
2 parents 3c44611 + d1f5ff9 commit e6761a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ if(MSVC)
endif()
set(CBOR_LIBRARIES cbor)
set(ZLIB_LIBRARIES zlib1)
set(CRYPTO_LIBRARIES crypto-49)
set(CRYPTO_LIBRARIES crypto-50)
set(MSVC_DISABLED_WARNINGS_LIST
"C4152" # nonstandard extension used: function/data pointer
# conversion in expression;
Expand Down
4 changes: 2 additions & 2 deletions windows/ms_const.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# license that can be found in the LICENSE file.

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

# libcbor coordinates.
New-Variable -Name 'LIBCBOR' -Value 'libcbor' -Option Constant
Expand Down
2 changes: 1 addition & 1 deletion windows/ms_release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $Architectures = @('x64', 'Win32', 'ARM64', 'ARM')
$InstallPrefixes = @('Win64', 'Win32', 'ARM64', 'ARM')
$Types = @('static')
$Config = 'Release'
$LibCrypto = '49'
$LibCrypto = '50'
$SDK = '142'

. "$PSScriptRoot\ms_const.ps1"
Expand Down

0 comments on commit e6761a3

Please sign in to comment.