diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-23 08:21:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-23 08:21:21 +0000 |
commit | 1a94fee42d79185ac6bc72c8bc2410973688e99d (patch) | |
tree | 5181d17d38596f615de16262d03d2c0c742705a8 | |
parent | a91ce6a5d6e6b26358833c3858e090cd682b89b6 (diff) |
Juan F. Codagnone's fixes to build properly on Windows again
-rw-r--r-- | lib/Makefile.vc6 | 7 | ||||
-rw-r--r-- | lib/curllib.dsp | 16 | ||||
-rw-r--r-- | src/Makefile.vc6 | 2 | ||||
-rw-r--r-- | src/urlglob.c | 5 |
4 files changed, 29 insertions, 1 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index dfbd07a50..b2cda189d 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 ab711dc87..6e432aec9 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 9aea5d143..f9ecb9a9c 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 b7c84a7f6..ace4712c2 100644 --- a/src/urlglob.c +++ b/src/urlglob.c @@ -29,8 +29,13 @@ #include <string.h> #include <ctype.h> #include <curl/curl.h> + +#define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ +#include <curl/mprintf.h> + #include "urlglob.h" + #ifdef CURLDEBUG #include "../lib/memdebug.h" #endif |