diff options
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | lib/Makefile.vc6 | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -8,6 +8,10 @@ Daniel Stenberg (14 Apr 2008) +- Sandor Feldi reported bug #1942022 + (http://curl.haxx.se/bug/view.cgi?id=1942022) pointing out a mistake in the + lib/Makefile.vc[68] makefiles' release-ssl-dll target. + - Brock Noland reported that curl behaved differently depending on which order you used -i and -I. diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index dc396bb88..bce42a6a0 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -165,7 +165,7 @@ TARGET = $(LIB_NAME).lib DIROBJ = $(CFG)
LFLAGSSSL = "/LIBPATH:$(OPENSSL_PATH)\out32dll"
LNK = $(LNKLIB) $(WINLIBS) $(SSLLIBS) $(LFLAGSSSL) /out:$(DIROBJ)\$(TARGET)
-CC = $(CCNODBG) $(RTLIB) $(CFLAGSSSL)
+CC = $(CCNODBG) $(RTLIB) $(CFLAGSSSL) $(CFLAGSLIB)
CFGSET = TRUE
!ENDIF
|