]> granicus.if.org Git - curl/commitdiff
enabled build with sspi.
authorGunter Knauf <gk@gknw.de>
Sun, 28 Jan 2007 21:54:10 +0000 (21:54 +0000)
committerGunter Knauf <gk@gknw.de>
Sun, 28 Jan 2007 21:54:10 +0000 (21:54 +0000)
Makefile.dist
lib/Makefile.m32
src/Makefile.m32

index af351f3f593f0aeb1eadc6cacb254dfde3f610c1..29ca57530c6b97082d35733c46da6c20b7d52615 100644 (file)
@@ -77,6 +77,10 @@ mingw32-ssh2-ssl:
        $(MAKE) -C lib -f Makefile.m32 SSH2=1 SSL=1 ZLIB=1
        $(MAKE) -C src -f Makefile.m32 SSH2=1 SSL=1 ZLIB=1
 
+mingw32-ssh2-ssl-sspi:
+       $(MAKE) -C lib -f Makefile.m32 SSH2=1 SSL=1 SSPI=1 ZLIB=1
+       $(MAKE) -C src -f Makefile.m32 SSH2=1 SSL=1 SSPI=1 ZLIB=1
+
 mingw32-clean:
        $(MAKE) -C lib -f Makefile.m32 clean
        $(MAKE) -C src -f Makefile.m32 clean
index c3d1741e8d07277e65b9f3ebd8488502950d0e46..3e1a0768070319f92afc20bc279ed1c2c3355a5c 100644 (file)
@@ -47,6 +47,9 @@ ifdef ZLIB
   CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
   DLL_LIBS += -L$(ZLIB_PATH) -lz
 endif
+ifdef SSPI
+  CFLAGS += -DUSE_WINDOWS_SSPI
+endif
 COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
 
 # Makefile.inc provides the CSOURCES and HHEADERS defines
index 46eebaf5e505ab56b871e9ea55b1694764b34a6f..7bae329417bbfbac9190a9eedac29e3418c0cbce 100644 (file)
@@ -55,6 +55,9 @@ ifdef SSL
   CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
   curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32
 endif
+ifdef SSPI
+  CFLAGS += -DUSE_WINDOWS_SSPI
+endif
 curl_LDADD += -lwsock32 -lws2_32 -lwinmm -L$(ZLIB_PATH) -lz
 
 # Makefile.inc provides the CSOURCES and HHEADERS defines