diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-10-14 13:22:49 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-10-14 13:22:49 +0000 |
commit | 51369753bb65bbe3bb2fc88fdfb701f7ff76c72a (patch) | |
tree | d73c566bad6b472ecb6e74538da798b35616d26e | |
parent | 82a4c2bce3c7a7834bd18920aee2f22d42a2ebb3 (diff) |
Reported by 'TemPRImus' in bug 1326665: use the "Multi-Threaded" options even
when building the static library. http://curl.haxx.se/bug/view.cgi?id=1326665
-rw-r--r-- | lib/Makefile.vc6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index cebf1f3a9..14bbe4142 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -67,8 +67,8 @@ USEMM_LIBS = YES #############################################################
## Nothing more to do below this line!
-CCNODBG = cl.exe /MD /O2 /DNDEBUG
-CCDEBUG = cl.exe /MDd /Od /Gm /Zi /D_DEBUG /GZ
+CCNODBG = cl.exe /MT /O2 /DNDEBUG
+CCDEBUG = cl.exe /MTd /Od /Gm /Zi /D_DEBUG /GZ
CFLAGSSSL = /DUSE_SSLEAY /I "$(OPENSSL_PATH)/inc32" /I "$(OPENSSL_PATH)/inc32/openssl"
CFLAGSZLIB = /DHAVE_ZLIB_H /DHAVE_ZLIB /DHAVE_LIBZ /I "$(ZLIB_PATH)"
CFLAGS = /I. /I../include /nologo /W3 /GX /DWIN32 /YX /FD /c /DBUILDING_LIBCURL
|