summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-11 20:25:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-11 20:25:10 +0000
commit0fd3b7a00ab42af4795c2094af61057a5f7f9536 (patch)
tree69d2db2b93ee14b9af4958739aaf55130482f4b2
parentbd51b80fa5b755f7295cba5ab05eabc3dd76982b (diff)
downloadgnurl-0fd3b7a00ab42af4795c2094af61057a5f7f9536.tar.gz
gnurl-0fd3b7a00ab42af4795c2094af61057a5f7f9536.tar.bz2
gnurl-0fd3b7a00ab42af4795c2094af61057a5f7f9536.zip
David Byron's patch for MSVC builds with zlib
-rw-r--r--lib/Makefile.vc621
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6
index 176399f10..8bf019d19 100644
--- a/lib/Makefile.vc6
+++ b/lib/Makefile.vc6
@@ -19,6 +19,7 @@
# files in the "cfg" directory, but then the make file
# in \src would need to be changed.
#
+# $Id: Makefile.vc6,v 1.17 2004/01/13 08:57:01 bagder Exp $
##############################################################
# CHANGE LOG
# ------------------------------------------------------------
@@ -37,12 +38,17 @@ LIB_NAME_DEBUG = libcurld
OPENSSL_PATH = ../../openssl-0.9.7a
!ENDIF
+!IFNDEF ZLIB_PATH
+ZLIB_PATH = ../../zlib-1.1.4
+!ENDIF
+
#############################################################
## Nothing more to do below this line!
CCNODBG = cl.exe /MD /O2 /D "NDEBUG"
CCDEBUG = cl.exe /MDd /Od /Gm /Zi /D "_DEBUG" /GZ
CFLAGSSSL = /D "USE_SSLEAY" /I "$(OPENSSL_PATH)/inc32" /I "$(OPENSSL_PATH)/inc32/openssl"
+CFLAGSZLIB = /D "HAVE_ZLIB_H" /D "HAVE_ZLIB" /D "HAVE_LIBZ" /I "$(ZLIB_PATH)"
CFLAGS = /I "." /I "../include" /nologo /W3 /GX /D "WIN32" /D "VC6" /D "_MBCS" /D "_LIB" /YX /FD /c /D "MSDOS"
LNKDLL = link.exe /DLL /def:libcurl.def
@@ -101,6 +107,19 @@ RESOURCE = $(DIROBJ)\libcurl.res
!ENDIF
######################
+# release-ssl-zlib
+
+!IF "$(CFG)" == "release-ssl-zlib"
+TARGET =$(LIB_NAME).lib
+DIROBJ =.\$(CFG)
+LFLAGSSSL = "/LIBPATH:$(OPENSSL_PATH)/out32"
+LFLAGSZLIB = "/LIBPATH:$(ZLIB_PATH)"
+LNK = $(LNKLIB) $(LFLAGSSSL) $(LFLAGSZLIB) /out:$(TARGET)
+CC = $(CCNODBG) $(CFLAGSSSL) $(CFLAGSZLIB)
+CFGSET = TRUE
+!ENDIF
+
+######################
# release-libcurl-ssl-dll
!IF "$(CFG)" == "release-libcurl-ssl-dll"
TARGET =$(LIB_NAME).lib
@@ -169,6 +188,7 @@ RESOURCE = $(DIROBJ)\libcurl.res
!MESSAGE release - release static library
!MESSAGE release-dll - release dll
!MESSAGE release-ssl - release static library with ssl
+!MESSAGE release-ssl-zlib - release static library with ssl and zlib
!MESSAGE release-ssl-dll - release dll library with ssl
!MESSAGE release-libcurl-ssl-dll - static libcurl with shared ssl
!MESSAGE debug - debug static library
@@ -223,6 +243,7 @@ X_OBJS= \
$(DIROBJ)\http_ntlm.obj \
$(DIROBJ)\md5.obj \
$(DIROBJ)\strerror.obj \
+ $(DIROBJ)\content_encoding.obj \
$(RESOURCE)
all : $(TARGET)