cURL / Mailing Lists / curl-users / Single Mail

curl-users

[ curl-Bugs-454856 ] Win32 build

From: <noreply_at_sourceforge.net>
Date: Thu, 23 Aug 2001 21:47:22 -0700

Bugs item #454856, was opened at 2001-08-23 21:47
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=100976&aid=454856&group_id=976

Category: compile problem
Group: wrong behaviour
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Daniel Stenberg (bagder)
Summary: Win32 build

Initial Comment:
Hi,

I noticed a couple of cases in lib\Makefile.vc6 where
object modules were built with debug or release
settings instead of release-ssl settings, causing some
code to be compiled without USE_SSLEAY defined.

When compiled, curl -V gave: curl 7.8.1 (win32)
libcurl 7.8.1 (OpenSSL 0.9.6b).

I've included a patch inline which I believe should
fix this issue.

Regards,
Tim

--- lib/Makefile.vc6.orig Fri Aug 10 16:23:43
2001
+++ lib/Makefile.vc6 Fri Aug 24 14:26:14 2001
@@ -127,7 +127,7 @@
         versionrs.obj \
         easyrs.obj \
         strequalrs.obj \
- strtokd.obj
+ strtokrs.obj
 
 LINK_OBJS= \
         base64.obj \
@@ -310,7 +310,7 @@
 ftprs.obj: ftp.c
         $(CCRS) $(CFLAGS) ftp.c
 httprs.obj: http.c
- $(CCR) $(CFLAGS) http.c
+ $(CCRS) $(CFLAGS) http.c
 http_chunksrs.obj: http_chunks.c
         $(CCRS) $(CFLAGS) http_chunks.c
 ldaprs.obj: ldap.c

----------------------------------------------------------------------

You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=100976&aid=454856&group_id=976
Received on 2001-08-24