diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2012-06-11 19:03:14 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-06-11 19:03:14 +0200 |
commit | cb142cf217fe7e42223d06e80300f1c7f70230a0 (patch) | |
tree | 0513fa324a8361f923ee075051ab9d574d2be6e0 /winbuild/Makefile.vc | |
parent | 7da6a9128b0653790d839f5f708f9caa2633e332 (diff) | |
download | curl-cb142cf217fe7e42223d06e80300f1c7f70230a0.tar.gz |
winbuild: Updated winbuild scripts to add schannel
Diffstat (limited to 'winbuild/Makefile.vc')
-rw-r--r-- | winbuild/Makefile.vc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winbuild/Makefile.vc b/winbuild/Makefile.vc index a45e4ee56..a35e9beab 100644 --- a/winbuild/Makefile.vc +++ b/winbuild/Makefile.vc @@ -73,6 +73,10 @@ SSL = dll !ELSEIF "$(WITH_SSL)"=="static"
USE_SSL = true
SSL = static
+!ELSEIF "$(WITH_SSL)"=="schannel"
+USE_SSL = true
+USE_SSPI = true
+SSL = schannel
!ENDIF
!IF "$(WITH_ZLIB)"=="dll"
|