Remove libsodium libraries from install

This commit is contained in:
Twangboy 2022-12-20 17:14:29 -07:00 committed by Pedro Algarvio
parent ca4d05043f
commit bdfcb806c6
2 changed files with 0 additions and 14 deletions

View file

@ -93,19 +93,6 @@ if ( Test-Path -Path "$SCRIPTS_DIR\distro.exe" ) {
exit 1
}
#-------------------------------------------------------------------------------
# Installing Libsodium DLL
#-------------------------------------------------------------------------------
Write-Host "Installing Libsodium DLL: " -NoNewline
$libsodium_url = "$SALT_DEP_URL/libsodium/1.0.18/libsodium.dll"
Invoke-WebRequest -Uri $libsodium_url -OutFile "$SCRIPTS_DIR\libsodium.dll"
if ( Test-Path -Path "$SCRIPTS_DIR\libsodium.dll" ) {
Write-Host "Success" -ForegroundColor Green
} else {
Write-Host "Failed" -ForegroundColor Red
exit 1
}
#-------------------------------------------------------------------------------
# Cleaning Up Installation
#-------------------------------------------------------------------------------

View file

@ -426,7 +426,6 @@ class DownloadWindowsDlls(Command):
for fname in (
"openssl/1.1.1k/ssleay32.dll",
"openssl/1.1.1k/libeay32.dll",
"libsodium/1.0.18/libsodium.dll",
):
# See if the library is already on the system
if find_library(fname):