diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-18 20:32:13 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-18 20:33:13 (GMT) |
commit | af3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc (patch) | |
tree | 023c1d27f200c23379c44b692e063aad01b80e83 /autoconf | |
parent | 8e517721c88f22774224766dba4105fcb723fa91 (diff) | |
download | swift-af3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc.zip swift-af3a1756f38e81b03baf1d4a1b6e3ed5a79ccebc.tar.bz2 |
Adapt OpenSSL detection to MSVC.
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/ax_openssl.m4 | 2 |
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" |