aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.m32
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2011-09-04 10:03:08 +0200
committerGuenter Knauf <lists@gknw.net>2011-09-04 10:03:08 +0200
commit476f194d7f8c96eb8a3b2958a4082744f3cec0a7 (patch)
treefd2c6a75d8eab875d52016e6fb22e520c862b45d /src/Makefile.m32
parentbdc311cf980eaebc0e3dc43801fa4a98b568832d (diff)
Added SPNEGO to MinGW makefiles.
Diffstat (limited to 'src/Makefile.m32')
-rw-r--r--src/Makefile.m326
1 files changed, 6 insertions, 0 deletions
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