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
Logged In: YES
user_id=1110
Many thanks!
I applied your changes right away and they're now in CVS.