mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Brian R Duffy made the makefile work to build SSL-enabled curl with Borland
C++.
This commit is contained in:
parent
d8dd9b0008
commit
71b3cc08a6
@ -16,21 +16,25 @@ RM = del
|
|||||||
LIB = tlib
|
LIB = tlib
|
||||||
TOPDIR = ..
|
TOPDIR = ..
|
||||||
CURNTDIR = .
|
CURNTDIR = .
|
||||||
CXXFLAGS = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu -w-pro -tWM
|
CXXFLAGS = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu \
|
||||||
DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS
|
-w-pro -tWM
|
||||||
INCDIRS = -I$(CURNTDIR);$(TOPDIR)\include\
|
|
||||||
|
# If you build without SSL support, remove "-DUSE_SSLEAY" from the line below.
|
||||||
|
DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS \
|
||||||
|
-DUSE_SSLEAY
|
||||||
|
INCDIRS = -I$(CURNTDIR);$(TOPDIR)\include\
|
||||||
|
|
||||||
# 'BCCDIR' has to be set up in your c:\autoexec.bat
|
# 'BCCDIR' has to be set up in your c:\autoexec.bat
|
||||||
# i.e. SET BCCDIR = c:\Borland\BCC55
|
# i.e. SET BCCDIR = c:\Borland\BCC55
|
||||||
# where c:\Borland\BCC55 is the compiler is installed
|
# where c:\Borland\BCC55 is the compiler is installed
|
||||||
LINKLIB = $(BCCDIR)\lib\psdk\ws2_32.lib
|
LINKLIB = $(BCCDIR)\lib\psdk\ws2_32.lib
|
||||||
LIBCURLLIB = libcurl.lib
|
LIBCURLLIB = libcurl.lib
|
||||||
|
|
||||||
.SUFFIXES: .c
|
.SUFFIXES: .c
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
base64.c \
|
base64.c \
|
||||||
md5.c \
|
md5.c \
|
||||||
cookie.c \
|
cookie.c \
|
||||||
transfer.c \
|
transfer.c \
|
||||||
escape.c \
|
escape.c \
|
||||||
@ -38,7 +42,8 @@ SOURCES = \
|
|||||||
ftp.c \
|
ftp.c \
|
||||||
http.c \
|
http.c \
|
||||||
http_chunks.c \
|
http_chunks.c \
|
||||||
http_digest.c \
|
http_digest.c \
|
||||||
|
http_ntlm.c \
|
||||||
ldap.c \
|
ldap.c \
|
||||||
dict.c \
|
dict.c \
|
||||||
telnet.c \
|
telnet.c \
|
||||||
@ -51,6 +56,7 @@ SOURCES = \
|
|||||||
netrc.c \
|
netrc.c \
|
||||||
progress.c \
|
progress.c \
|
||||||
sendf.c \
|
sendf.c \
|
||||||
|
inet_pton.c \
|
||||||
speedcheck.c \
|
speedcheck.c \
|
||||||
ssluse.c \
|
ssluse.c \
|
||||||
timeval.c \
|
timeval.c \
|
||||||
|
Loading…
Reference in New Issue
Block a user