From 476f194d7f8c96eb8a3b2958a4082744f3cec0a7 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Sun, 4 Sep 2011 10:03:08 +0200 Subject: Added SPNEGO to MinGW makefiles. --- lib/Makefile.m32 | 6 ++++++ src/Makefile.m32 | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/lib/Makefile.m32 b/lib/Makefile.m32 index ef8825d18..7bea85807 100644 --- a/lib/Makefile.m32 +++ b/lib/Makefile.m32 @@ -103,6 +103,9 @@ endif ifeq ($(findstring -sspi,$(CFG)),-sspi) SSPI = 1 endif +ifeq ($(findstring -spnego,$(CFG)),-spnego) +SPNEGO = 1 +endif ifeq ($(findstring -ldaps,$(CFG)),-ldaps) LDAPS = 1 endif @@ -154,6 +157,9 @@ endif ifdef SSPI CFLAGS += -DUSE_WINDOWS_SSPI endif +ifdef SPNEGO + CFLAGS += -DHAVE_SPNEGO +endif ifdef IPV6 CFLAGS += -DENABLE_IPV6 endif diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 58fbc97b6..7ec7012aa 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -105,6 +105,9 @@ endif ifeq ($(findstring -sspi,$(CFG)),-sspi) SSPI = 1 endif +ifeq ($(findstring -spnego,$(CFG)),-spnego) +SPNEGO = 1 +endif ifeq ($(findstring -ldaps,$(CFG)),-ldaps) LDAPS = 1 endif @@ -161,6 +164,9 @@ endif ifdef SSPI CFLAGS += -DUSE_WINDOWS_SSPI endif +ifdef SPNEGO + CFLAGS += -DHAVE_SPNEGO +endif ifdef IPV6 CFLAGS += -DENABLE_IPV6 endif -- cgit v1.2.3