diff options
author | Gunter Knauf <gk@gknw.de> | 2007-01-23 00:26:45 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-01-23 00:26:45 +0000 |
commit | 9ab7cda0105cd926ab67c31508c5d835466ce8e7 (patch) | |
tree | 369d5f1cfe21ce2cfdcaeec337a9d4cbd812af5c /src/Makefile.netware | |
parent | 6da70628c60d4f0914529076db5a72d3ca3fbe61 (diff) |
enabled build with libssh2; fixed copyright for new year..
Diffstat (limited to 'src/Makefile.netware')
-rw-r--r-- | src/Makefile.netware | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware index 28aa7582f..d863837e3 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -19,7 +19,12 @@ endif # Edit the path below to point to the base of your OpenSSL package. ifndef OPENSSL_PATH -OPENSSL_PATH = ../../openssl-0.9.8c +OPENSSL_PATH = ../../openssl-0.9.8d +endif + +# Edit the path below to point to the base of your LibSSH2 package. +ifndef LIBSSH2_PATH +LIBSSH2_PATH = ../../libssh2-0.14 endif ifndef INSTDIR @@ -29,7 +34,7 @@ endif # Edit the vars below to change NLM target settings. TARGET = curl VERSION = $(LIBCURL_VERSION) -COPYR = Copyright (C) 1996 - 2006, Daniel Stenberg, <daniel@haxx.se> +COPYR = Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se> DESCR = cURL $(LIBCURL_VERSION_STR) - http://curl.haxx.se MTSAFE = YES STACK = 64000 @@ -379,6 +384,11 @@ ifdef WITH_SSL @echo $(DL)#define HAVE_LIBCRYPTO 1$(DL) >> $@ @echo $(DL)#define OPENSSL_NO_KRB5 1$(DL) >> $@ endif +ifdef WITH_SSH2 + @echo $(DL)#define USE_LIBSSH2 1$(DL) >> $@ + @echo $(DL)#define HAVE_LIBSSH2 1$(DL) >> $@ + @echo $(DL)#define HAVE_LIBSSH2_H 1$(DL) >> $@ +endif ifdef OLD_NOVELLSDK @echo $(DL)#define socklen_t int$(DL) >> $@ endif |