mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
Added zlib Library.
This commit is contained in:
parent
b2563b9f9f
commit
2d02d20911
@ -12,6 +12,7 @@
|
||||
CC = gcc
|
||||
STRIP = strip -s
|
||||
OPENSSL_PATH = ../../openssl-0.9.6d
|
||||
ZLIB_PATH = ../../zlib-1.1.3
|
||||
|
||||
# We may need these someday
|
||||
# PERL = perl
|
||||
@ -40,6 +41,9 @@ curl_LDADD += -lwsock32 -lws2_32 -lwinmm
|
||||
ifdef SSL
|
||||
curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32 -lRSAglue
|
||||
endif
|
||||
ifdef ZLIB
|
||||
curl_LDADD += -L$(ZLIB_PATH) -lz
|
||||
endif
|
||||
|
||||
PROGRAMS = $(curl_PROGRAMS)
|
||||
SOURCES = $(curl_SOURCES)
|
||||
|
Loading…
Reference in New Issue
Block a user