diff options
-rw-r--r-- | src/Makefile.vc6 | 6 |
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 \
|