diff options
author | sm <sm@resistor.net> | 2001-08-09 22:43:43 +0000 |
---|---|---|
committer | sm <sm@resistor.net> | 2001-08-09 22:43:43 +0000 |
commit | 022ea4226528d97f2de929c54b24e90ac4a99d42 (patch) | |
tree | 6d5f31fa12648bba00adadae7a70989f2875616d /lib | |
parent | b54b68ac7b6e8473acbc96f04b5843ca87510d7b (diff) |
Fixed bugs for building debug and SSL lib in VC makefile
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.vc6 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 550ddc22d..18e48dcaa 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -11,7 +11,7 @@ PROGRAM_NAME = libcurl.lib
PROGRAM_NAME_DEBUG = libcurld.lib
-#OPENSSL_PATH = ../../openssl-0.9.6a
+#OPENSSL_PATH = ../../openssl-0.9.6b
########################################################
## Nothing more to do below this line!
@@ -294,7 +294,7 @@ easyd.obj: easy.c strequald.obj: strequal.c
$(CCD) $(CFLAGS) strequal.c
strtokd.obj:strtok.c
- $(CCR) $(CFLAGS) strtok.c
+ $(CCD) $(CFLAGS) strtok.c
## Release SSL
base64rs.obj: base64.c
@@ -356,7 +356,7 @@ easyrs.obj: easy.c strequalrs.obj: strequal.c
$(CCRS) $(CFLAGS) strequal.c
strtokrs.obj:strtok.c
- $(CCR) $(CFLAGS) strtok.c
+ $(CCRS) $(CFLAGS) strtok.c
clean:
|