summaryrefslogtreecommitdiff
path: root/src/Makefile.netware
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2011-09-25 16:29:08 +0200
committerGuenter Knauf <lists@gknw.net>2011-09-25 16:29:08 +0200
commit230459dd00d216992c919a3618d5fa6707b2dd89 (patch)
tree57b63f0666b5594e5e0f3ecf68b34bd9ba849f42 /src/Makefile.netware
parent745014b7267e8333777807607ba11aa1eb011d46 (diff)
downloadgnurl-230459dd00d216992c919a3618d5fa6707b2dd89.tar.gz
gnurl-230459dd00d216992c919a3618d5fa6707b2dd89.tar.bz2
gnurl-230459dd00d216992c919a3618d5fa6707b2dd89.zip
NetWare makefile tweaks to select different builds.
Diffstat (limited to 'src/Makefile.netware')
-rw-r--r--src/Makefile.netware37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware
index a0e91bf33..c2f4ad063 100644
--- a/src/Makefile.netware
+++ b/src/Makefile.netware
@@ -176,6 +176,43 @@ CURL_LIB = ../lib
INCLUDES = -I$(CURL_INC) -I$(CURL_LIB)
+ifeq ($(findstring -static,$(CFG)),-static)
+LINK_STATIC = 1
+endif
+ifeq ($(findstring -ares,$(CFG)),-ares)
+WITH_ARES = 1
+endif
+ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
+WITH_RTMP = 1
+WITH_SSL = 1
+WITH_ZLIB = 1
+endif
+ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
+WITH_SSH2 = 1
+WITH_SSL = 1
+WITH_ZLIB = 1
+endif
+ifeq ($(findstring -axtls,$(CFG)),-axtls)
+WITH_AXTLS = 1
+WITH_SSL =
+else
+ifeq ($(findstring -ssl,$(CFG)),-ssl)
+WITH_SSL = 1
+endif
+endif
+ifeq ($(findstring -zlib,$(CFG)),-zlib)
+WITH_ZLIB = 1
+endif
+ifeq ($(findstring -idn,$(CFG)),-idn)
+WITH_IDN = 1
+endif
+ifeq ($(findstring -spnego,$(CFG)),-spnego)
+WITH_SPNEGO = 1
+endif
+ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
+ENABLE_IPV6 = 1
+endif
+
ifdef LINK_STATIC
LDLIBS = $(CURL_LIB)/libcurl.$(LIBEXT)
ifdef WITH_ARES