]> granicus.if.org Git - curl/commitdiff
Brian R Duffy made the makefile work to build SSL-enabled curl with Borland
authorDaniel Stenberg <daniel@haxx.se>
Tue, 13 Jan 2004 08:02:01 +0000 (08:02 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 13 Jan 2004 08:02:01 +0000 (08:02 +0000)
C++.

lib/Makefile.b32

index 97e096a3da319786f980a330722aa4dce44e5fa0..3b110d4d504ef2e259203f391ab5400aeeff05b2 100644 (file)
@@ -16,21 +16,25 @@ RM     = del
 LIB       = tlib\r
 TOPDIR    = ..\r
 CURNTDIR   = .\r
-CXXFLAGS   = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu -w-pro -tWM\r
-DEFINES    = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS\r
-INCDIRS    = -I$(CURNTDIR);$(TOPDIR)\include\
+CXXFLAGS   = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu \\r
+             -w-pro -tWM\r
+\r
+# If you build without SSL support, remove "-DUSE_SSLEAY" from the line below.\r
+DEFINES    = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS \\r
+             -DUSE_SSLEAY\r
+INCDIRS    = -I$(CURNTDIR);$(TOPDIR)\include\\r
 \r
 # 'BCCDIR' has to be set up in your c:\autoexec.bat\r
 # i.e. SET BCCDIR = c:\Borland\BCC55\r
 # where c:\Borland\BCC55 is the compiler is installed\r
-LINKLIB           = $(BCCDIR)\lib\psdk\ws2_32.lib
+LINKLIB           = $(BCCDIR)\lib\psdk\ws2_32.lib\r
 LIBCURLLIB = libcurl.lib\r
 \r
 .SUFFIXES: .c\r
 \r
 SOURCES           = \\r
        base64.c \\r
-       md5.c \
+       md5.c \\r
        cookie.c \\r
        transfer.c \\r
        escape.c \\r
@@ -38,7 +42,8 @@ SOURCES          = \
        ftp.c \\r
        http.c \\r
         http_chunks.c \\r
-       http_digest.c \
+       http_digest.c \\r
+       http_ntlm.c \\r
        ldap.c \\r
        dict.c \\r
        telnet.c \\r
@@ -51,6 +56,7 @@ SOURCES          = \
        netrc.c \\r
        progress.c \\r
        sendf.c \\r
+       inet_pton.c \\r
        speedcheck.c \\r
        ssluse.c \\r
        timeval.c \\r