summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-06-18 20:32:13 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-06-18 20:33:13 (GMT)
commitaf3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc (patch)
tree023c1d27f200c23379c44b692e063aad01b80e83 /autoconf
parent8e517721c88f22774224766dba4105fcb723fa91 (diff)
downloadswift-af3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc.zip
swift-af3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc.tar.bz2
Adapt OpenSSL detection to MSVC.
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/ax_openssl.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/ax_openssl.m4 b/autoconf/ax_openssl.m4
index cdb3f12..0534e33 100644
--- a/autoconf/ax_openssl.m4
+++ b/autoconf/ax_openssl.m4
@@ -11,7 +11,7 @@ AC_DEFUN([AX_OPENSSL],
OPENSSL_CPPFLAGS="-I$withval/include"
case $host in
*-*-cygwin*|*-mingw32*)
- OPENSSL_LIBS="-L$withval/lib/MinGW -leay32 $withval/lib/MinGW/ssleay32.a"
+ OPENSSL_LIBS="-L$withval/lib/VC -leay32MT $withval/lib/VC/ssleay32MT.lib"
;;
*)
OPENSSL_LIBS="-L$withval/lib -lssl -lcrypto"