Skip to content

Commit

Permalink
local patch to make curl build with sspi+openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Feb 22, 2017
1 parent 6cab52a commit 1dd648c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions curl.diff
@@ -0,0 +1,16 @@
diff --git a/lib/urldata.h b/lib/urldata.h
index 648b3e81d..7f87913a9 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -136,8 +136,10 @@
#undef realloc
#endif /* USE_AXTLS */

-#ifdef USE_SCHANNEL
+#if defined(USE_SCHANNEL) || defined(USE_WINDOWS_SSPI)
#include "curl_sspi.h"
+#endif
+#ifdef USE_SCHANNEL
#include <schnlsp.h>
#include <schannel.h>
#endif

0 comments on commit 1dd648c

Please sign in to comment.