mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 11:11:38 +08:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
|
From 18de5c60ae0a987680681d5a0602009b428504fa Mon Sep 17 00:00:00 2001
|
||
|
From: Gilles Khouzam <gillesk@microsoft.com>
|
||
|
Date: Mon, 19 Jun 2017 16:33:38 -0700
|
||
|
Subject: [PATCH] Add better detection for Openssl on Windows.
|
||
|
|
||
|
Look for libeay32 and ssleay32 as another detection mechanism
|
||
|
---
|
||
|
configure | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/configure b/configure
|
||
|
index a1818dc..1cf2a7c 100755
|
||
|
--- a/configure
|
||
|
+++ b/configure
|
||
|
@@ -5836,6 +5836,7 @@ enabled openssl && { use_pkg_config openssl openssl/ssl.h OPENSSL_init
|
||
|
check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
|
||
|
check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
|
||
|
check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
|
||
|
+ check_lib openssl/ssl.h SSL_library_init -llibeay32 -lssleay32 ||
|
||
|
die "ERROR: openssl not found"; }
|
||
|
enabled qtkit_indev && { check_header_objcc QTKit/QTKit.h || disable qtkit_indev; }
|
||
|
|
||
|
--
|
||
|
2.10.1.windows.1
|
||
|
|