From: Daniel Stenberg Date: Wed, 23 Jul 2003 08:21:21 +0000 (+0000) Subject: Juan F. Codagnone's fixes to build properly on Windows again X-Git-Tag: curl-7_10_6~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a94fee42d79185ac6bc72c8bc2410973688e99d;p=thirdparty%2Fcurl.git Juan F. Codagnone's fixes to build properly on Windows again --- diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index dfbd07a50b..b2cda189db 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -202,7 +202,9 @@ X_OBJS= \ $(DIROBJ)\hash.obj \ $(DIROBJ)\llist.obj \ $(DIROBJ)\share.obj \ - $(DIROBJ)\multi.obj + $(DIROBJ)\multi.obj \ + $(DIROBJ)\http_digest.obj \ + $(DIROBJ)\md5.obj all : $(TARGET) @@ -224,3 +226,6 @@ clean: -@erase $(DIROBJ)\*.obj -@erase vc60.idb -@erase vc60.pch + +getdate.c: getdate.c.cvs + copy getdate.c.cvs getdate.c diff --git a/lib/curllib.dsp b/lib/curllib.dsp index ab711dc879..6e432aec9a 100644 --- a/lib/curllib.dsp +++ b/lib/curllib.dsp @@ -389,6 +389,22 @@ SOURCE=.\url.h SOURCE=.\urldata.h # End Source File +# Begin Source File + +SOURCE=.\http_digest.c +# End Source File +# Begin Source File + +SOURCE=.\md5.c +# End Source File +# Begin Source File + +SOURCE=.\http_digest.h +# End Source File +# Begin Source File + +SOURCE=.\md5.h +# End Source File # End Group # Begin Group "Resource Files" diff --git a/src/Makefile.vc6 b/src/Makefile.vc6 index 9aea5d143c..f9ecb9a9ce 100644 --- a/src/Makefile.vc6 +++ b/src/Makefile.vc6 @@ -101,3 +101,5 @@ clean: distrib: clean -@erase $(PROGRAM_NAME) +hugehelp.c: hugehelp.c.cvs + copy hugehelp.c.cvs hugehelp.c diff --git a/src/urlglob.c b/src/urlglob.c index b7c84a7f63..ace4712c20 100644 --- a/src/urlglob.c +++ b/src/urlglob.c @@ -29,8 +29,13 @@ #include #include #include + +#define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ +#include + #include "urlglob.h" + #ifdef CURLDEBUG #include "../lib/memdebug.h" #endif