diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-06 16:00:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-06 16:00:55 +0000 |
commit | 9e6cc86bf76e1cd0bee2cfc0f4a4fe8541bea9f1 (patch) | |
tree | f52c5f4d8b59ea9f4a27b1f757bb95843f175e8e | |
parent | b544c5fa5c7474bcf792969934564e0446334134 (diff) |
Miklos Nemeth improved
-rw-r--r-- | lib/Makefile.vc6 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index f366b8fe7..f5651d51a 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -23,13 +23,18 @@ # CHANGE LOG
# ------------------------------------------------------------
# 05.11.2001 John Lask Initial Release
+# 02.05.2002 Miklos Nemeth OPENSSL_PATH environment; no need
+# for OpenSSL libraries when creating a
+# static libcurl.lib
#
#
##############################################################
LIB_NAME = libcurl
LIB_NAME_DEBUG = libcurld
+!IFNDEF OPENSSL_PATH
OPENSSL_PATH = ../../openssl-0.9.6
+!ENDIF
#############################################################
## Nothing more to do below this line!
@@ -46,6 +51,8 @@ LFLAGSSSL = /LIBPATH:$(OPENSSL_PATH)/out32dll LINKLIBS = ws2_32.lib
SSLLIBS = libeay32.lib ssleay32.lib RSAglue.lib
CFGSET = FALSE
+LFLAGSSSL=
+SSLLIBS =
######################
# release
|