From 73a29d3b0758e4f51b7544013a0f98a5d7001c8e Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Mon, 19 Apr 2021 23:45:36 -0300 Subject: [PATCH] Link lokinet-bootstrap against libssl as well Just crypto apparently isn't enough, at least on some arches/distros. --- daemon/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/CMakeLists.txt b/daemon/CMakeLists.txt index c52188aa4..dfd85b7ca 100644 --- a/daemon/CMakeLists.txt +++ b/daemon/CMakeLists.txt @@ -27,7 +27,7 @@ target_link_libraries(lokinet-bootstrap PUBLIC cpr::cpr) if(NOT WIN32) find_package(OpenSSL REQUIRED) # because debian sid's curl doesn't link against openssl for some godawful cursed reason - target_link_libraries(lokinet-bootstrap PUBLIC OpenSSL::Crypto) + target_link_libraries(lokinet-bootstrap PUBLIC OpenSSL::SSL OpenSSL::Crypto) endif() foreach(exe lokinet lokinet-vpn lokinet-bootstrap)