summaryrefslogtreecommitdiff
path: root/lib/Makefile.netware
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2011-09-27 16:01:36 +0200
committerGuenter Knauf <lists@gknw.net>2011-09-27 16:02:07 +0200
commitb4fccc1d8e9bb8a05436e5f0bf8f4910a20ad9af (patch)
treeb47978e61de4267be1e6acdf4a4bbe453669564c /lib/Makefile.netware
parente2be8ceed9bda26ebf8dcaaa7caf9df4d32d598a (diff)
downloadgnurl-b4fccc1d8e9bb8a05436e5f0bf8f4910a20ad9af.tar.gz
gnurl-b4fccc1d8e9bb8a05436e5f0bf8f4910a20ad9af.tar.bz2
gnurl-b4fccc1d8e9bb8a05436e5f0bf8f4910a20ad9af.zip
Added SPNEGO to NetWare build.
Diffstat (limited to 'lib/Makefile.netware')
-rw-r--r--lib/Makefile.netware12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index ed1c7a3e4..43fae2e7a 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -42,6 +42,11 @@ ifndef LIBRTMP_PATH
LIBRTMP_PATH = ../../librtmp-2.3
endif
+# Edit the path below to point to the base of your fbopenssl package.
+ifndef FBOPENSSL_PATH
+FBOPENSSL_PATH = ../../fbopenssl-0.4
+endif
+
# Edit the path below to point to the base of your c-ares package.
ifndef LIBCARES_PATH
LIBCARES_PATH = ../ares
@@ -241,6 +246,10 @@ ifdef WITH_SSL
LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/crypto.$(LIBEXT)
IMPORTS += GetProcessSwitchCount RunningProcess
INSTDEP += ca-bundle.crt
+ifdef WITH_SPNEGO
+ INCLUDES += -I$(FBOPENSSL_PATH)/include
+ LDLIBS += $(FBOPENSSL_PATH)/nw/fbopenssl.$(LIBEXT)
+endif
else
ifdef WITH_AXTLS
INCLUDES += -I$(AXTLS_PATH)/inc
@@ -621,6 +630,9 @@ ifdef WITH_SSL
@echo $(DL)#define HAVE_LIBSSL 1$(DL) >> $@
@echo $(DL)#define HAVE_LIBCRYPTO 1$(DL) >> $@
@echo $(DL)#define OPENSSL_NO_KRB5 1$(DL) >> $@
+ifdef WITH_SPNEGO
+ @echo $(DL)#define HAVE_SPNEGO 1$(DL) >> $@
+endif
else
ifdef WITH_AXTLS
@echo $(DL)#define USE_AXTLS 1$(DL) >> $@