aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-13 22:11:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-13 22:11:28 +0000
commit4ad4f3fc708889003719da826be0ba4b3854df49 (patch)
tree74a63624d9f3ecf7e346460a8ea37761fa87cd3b
parent67273eed9bc06b864bfb5882fc87ee6cd891be38 (diff)
Miklos Nemeth fixed the mmlib
-rw-r--r--src/Makefile.vc66
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.vc6 b/src/Makefile.vc6
index 4b94c5e82..9aea5d143 100644
--- a/src/Makefile.vc6
+++ b/src/Makefile.vc6
@@ -8,6 +8,8 @@
## Comments to: Troy Engel <tengel@sonic.net>
## Updated by: Craig Davison <cd@securityfocus.com>
## release-ssl added by Miklos Nemeth <mnemeth@kfkisystems.com>
+## winmm.lib added by Miklos Nemeth <mnemeth@kfkisystems.com> to support
+## timeGetTime() in timeval.c
PROGRAM_NAME = curl.exe
@@ -24,8 +26,8 @@ LINKD = link.exe /incremental:yes /debug /libpath:"../lib"
CFLAGS = /I "../include" /nologo /W3 /GX /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
LFLAGS = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:I386
-LINKLIBS = ws2_32.lib libcurl.lib
-LINKLIBS_DEBUG = ws2_32.lib libcurld.lib
+LINKLIBS = ws2_32.lib libcurl.lib winmm.lib
+LINKLIBS_DEBUG = ws2_32.lib libcurld.lib winmm.lib
RELEASE_OBJS= \
hugehelpr.obj \