vcbuild: stop hard-coding OpenSSL as a dependency

Git for Windows' default SSL backend is actually Secure Channel. Let's
not hard-code any backend, just ask for _any_ SSL backend.

This is necessary because we cannot ask for `schannel`, as
https://github.com/microsoft/vcpkg/pull/46459 removed the option to
specify that as a feature.

Signed-off-by: Dennis Ameling <dennis@dennisameling.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Dennis Ameling
2020-12-06 18:39:26 +01:00
committed by Johannes Schindelin
parent c0966a9c29
commit 9b4aa71a61

View File

@@ -127,5 +127,5 @@ set features=
goto :EOF
:curl_features
set features=[core,openssl]
set features=[core,ssl]
goto :EOF