diff options
author | Guenter Knauf <lists@gknw.net> | 2010-03-31 01:10:09 +0200 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2010-03-31 01:10:09 +0200 |
commit | 909fdc07bf612eb593735dc79a96566f6802699a (patch) | |
tree | 92a198f5cec5185a05f487e0d854d2f397626298 /src/Makefile.netware | |
parent | 8c6793d79a6604b10479630d1846fc9f56e1d525 (diff) | |
download | curl-909fdc07bf612eb593735dc79a96566f6802699a.tar.gz |
make folks use latest available dependent libraries.
Diffstat (limited to 'src/Makefile.netware')
-rw-r--r-- | src/Makefile.netware | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware index 0bc80a7fe..7afab1ad4 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -3,7 +3,7 @@ ## Makefile for building curl.nlm (NetWare version - gnu make) ## Use: make -f Makefile.netware ## -## Comments to: Guenter Knauf http://www.gknw.de/phpbb +## Comments to: Guenter Knauf http://www.gknw.net/phpbb # ################################################################# @@ -14,22 +14,27 @@ endif # Edit the path below to point to the base of your Zlib sources. ifndef ZLIB_PATH -ZLIB_PATH = ../../zlib-1.2.3 +ZLIB_PATH = ../../zlib-1.2.4 endif # Edit the path below to point to the base of your OpenSSL package. ifndef OPENSSL_PATH -OPENSSL_PATH = ../../openssl-0.9.8k +OPENSSL_PATH = ../../openssl-0.9.8n endif # Edit the path below to point to the base of your LibSSH2 package. ifndef LIBSSH2_PATH -LIBSSH2_PATH = ../../libssh2-1.1 +LIBSSH2_PATH = ../../libssh2-1.2.4 endif # Edit the path below to point to the base of your libidn package. ifndef LIBIDN_PATH -LIBIDN_PATH = ../../libidn-1.13 +LIBIDN_PATH = ../../libidn-1.18 +endif + +# Edit the path below to point to the base of your c-ares package. +ifndef LIBARES_PATH +LIBARES_PATH = ../ares endif ifndef INSTDIR @@ -148,14 +153,13 @@ SDK_LIBC = $(NDK_ROOT)/libc SDK_LDAP = $(NDK_ROOT)/cldapsdk/netware CURL_INC = ../include CURL_LIB = ../lib -ARES_LIB = ../ares INCLUDES = -I$(CURL_INC) -I$(CURL_LIB) ifdef LINK_STATIC LDLIBS = $(CURL_LIB)/libcurl.$(LIBEXT) ifdef WITH_ARES - LDLIBS += $(ARES_LIB)/libcares.$(LIBEXT) + LDLIBS += $(LIBCARES_PATH)/libcares.$(LIBEXT) endif else MODULES = libcurl.nlm @@ -555,7 +559,7 @@ hugehelp.c: @echo Creating $@ @$(CP) hugehelp.c.cvs $@ -$(ARES_LIB)/libcares.$(LIBEXT): - $(MAKE) -C $(ARES_LIB) -f Makefile.netware lib +$(LIBCARES_PATH)/libcares.$(LIBEXT): + $(MAKE) -C $(LIBCARES_PATH) -f Makefile.netware lib |