Commit 32cef52f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Kevin Roth corrected the zlib stuff to work better.

parent e7dd7c54
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ RM = rm -f
RANLIB = ranlib
STRIP = strip -g
OPENSSL_PATH = ../../openssl-0.9.6g
ZLIB_PATH = ../../zlib-1.1.3
ZLIB_PATH = ../../zlib-1.1.4

########################################################
## Nothing more to do below this line!
@@ -27,7 +27,7 @@ ifdef SSL
endif
ifdef ZLIB
	INCLUDES += -I"$(ZLIB_PATH)"
	CFLAGS += -DHAVE_ZLIB
	CFLAGS += -DHAVE_ZLIB -DHAVE_ZLIB_H
	DLL_LIBS += -L$(ZLIB_PATH) -lz
endif
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)