Add libsodium to setup.py for Windows

This commit is contained in:
twangboy 2020-05-21 21:45:25 -06:00 committed by Daniel Wozniak
parent 4b4b5a36f3
commit 821d0def61

View file

@ -485,7 +485,7 @@ class DownloadWindowsDlls(Command):
url = "https://repo.saltstack.com/windows/dependencies/{bits}/{fname}.dll"
dest = os.path.join(os.path.dirname(sys.executable), "{fname}.dll")
with indent_log():
for fname in ("libeay32", "ssleay32"):
for fname in ("libeay32", "ssleay32", "libsodium"):
# See if the library is already on the system
if find_library(fname):
continue