From 70110181fcd904e51a79a10db9199cfffe573c93 Mon Sep 17 00:00:00 2001 From: Alden Torres Date: Thu, 29 Nov 2018 21:16:43 -0500 Subject: [PATCH] using toolset instead of target-os to select openssl libraries when using msvc --- Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jamfile b/Jamfile index 3d9160b5c..871107cb0 100644 --- a/Jamfile +++ b/Jamfile @@ -557,9 +557,9 @@ lib ssl : ssl-deps : windows pre1.1 ssleay32 crypto @openssl-lib-path : : @openssl-include-path ; # OpenSSL 1.1+ windows -lib crypto : ssl-deps : windows libcrypto +lib crypto : ssl-deps : msvc 1.1 libcrypto @openssl-lib-path : : @openssl-include-path ; -lib ssl : ssl-deps : windows libssl crypto +lib ssl : ssl-deps : msvc 1.1 libssl crypto @openssl-lib-path : : @openssl-include-path ; # generic OpenSSL