Fixed OpenSSH support on Windows.
h3rald h3rald@h3rald.com
Sat, 29 Jul 2023 15:05:25 +0200
5 files changed,
1 insertions(+),
1 deletions(-)
M
minpkg/lib/min_crypto.nim
→
minpkg/lib/min_crypto.nim
@@ -41,7 +41,7 @@
when defined(ssl): when defined(windows): - {.passL: "-static -L"&getProjectPath()&"/minpkg/vendor/openssl/windows -lssl -lcrypto -lws2_32".} + {.passL: "-static -L"&getProjectPath()&"/minpkg/vendor/openssl/windows -lssl -lcrypto -lbcrypt".} elif defined(linux): {.passL: "-static -L"&getProjectPath()&"/minpkg/vendor/openssl/linux -lssl -lcrypto".} elif defined(macosx):