From 0f81e187930b2bd5a518836e4ba14974c578d495 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Sun, 23 Jul 2017 21:08:59 -0600 Subject: [PATCH] Use WinSSPI instead of OpenSSL Appveyor has OpenSSL installed, so cURL tries to link against it. This causes dll not found errors because we would also need to ship OpenSSL, so we link against Windows SSPI instead. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 6b5d23b03b..9a6206a8b8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,7 +22,7 @@ install: before_build: - mkdir build - cd build - - cmake -G "Visual Studio 15 2017 Win64" -DCITRA_USE_BUNDLED_QT=1 -DCITRA_USE_BUNDLED_SDL2=1 .. + - cmake -G "Visual Studio 15 2017 Win64" -DCITRA_USE_BUNDLED_QT=1 -DCITRA_USE_BUNDLED_SDL2=1 -DCMAKE_USE_OPENSSL=0 .. - cd .. build: