diff options
author | Yang Tse <yangsita@gmail.com> | 2009-01-29 20:32:27 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-01-29 20:32:27 +0000 |
commit | e813bf31d7b4ea4b39e227a66fec068f5fcd1a50 (patch) | |
tree | ac39d05380b17ae07b032105c1b7f53a256af05c /src | |
parent | 1bd0be0361f8ccf183ebd9682d848e6902e5dfc0 (diff) | |
download | curl-e813bf31d7b4ea4b39e227a66fec068f5fcd1a50.tar.gz |
Introduced curl_sspi.c and curl_sspi.h for the implementation of functions
Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were
named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c
Also adjusted socks_sspi.c to remove the link-time dependency on the Windows
SSPI library using it now in the same way as it was done in http_ntlm.c.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.vc6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6 index b7616763b..e85ca2f7f 100644 --- a/src/Makefile.vc6 +++ b/src/Makefile.vc6 @@ -221,8 +221,8 @@ LFLAGS = $(LFLAGS) $(SSL_IMP_LFLAGS) $(ZLIB_LFLAGS) !ENDIF
-LINKLIBS = $(LINKLIBS) wsock32.lib wldap32.lib secur32.lib
-LINKLIBS_DEBUG = $(LINKLIBS_DEBUG) wsock32.lib wldap32.lib secur32.lib
+LINKLIBS = $(LINKLIBS) wsock32.lib wldap32.lib
+LINKLIBS_DEBUG = $(LINKLIBS_DEBUG) wsock32.lib wldap32.lib
all : release
|