diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 15:08:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 15:08:46 +0000 |
commit | 51da6aaa07df9fa685d66563a922275bbf28d3ed (patch) | |
tree | 579108c869753f2f41acf431d9d25463c375dc1e /lib | |
parent | c8b79e36db7b6e2f1cd46caef6b070028825423b (diff) |
RSAglue.lib is no longer needed with recent OpenSSL versions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.vc6 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 13160ed10..dfbd07a50 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -33,7 +33,7 @@ LIB_NAME = libcurl
LIB_NAME_DEBUG = libcurld
!IFNDEF OPENSSL_PATH
-OPENSSL_PATH = ../../openssl-0.9.6
+OPENSSL_PATH = ../../openssl-0.9.7a
!ENDIF
#############################################################
@@ -48,7 +48,8 @@ LNKDLL = link.exe /DLL /def:libcurl.def LNKLIB = link.exe -lib
LFLAGS = /nologo
LINKLIBS = ws2_32.lib winmm.lib
-SSLLIBS = libeay32.lib ssleay32.lib RSAglue.lib
+SSLLIBS = libeay32.lib ssleay32.lib
+# RSAglue.lib was formerly needed in the SSLLIBS
CFGSET = FALSE
######################
|