From a160fba6c9f7b4f4b6be4901ada6fb114eb4d6b4 Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Mon, 20 Jan 2020 20:32:47 +0000 Subject: [PATCH] update: tell sinsp to use bundled openssl Co-authored-by: Lorenzo Fontana Signed-off-by: Leonardo Di Donato --- cmake/modules/sysdig.cmake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmake/modules/sysdig.cmake b/cmake/modules/sysdig.cmake index 12974b7b..fca1c35e 100644 --- a/cmake/modules/sysdig.cmake +++ b/cmake/modules/sysdig.cmake @@ -43,12 +43,11 @@ add_subdirectory("${SYSDIG_SOURCE_DIR}/userspace/libscap" "${PROJECT_BINARY_DIR} add_subdirectory("${SYSDIG_SOURCE_DIR}/userspace/libsinsp" "${PROJECT_BINARY_DIR}/userspace/libsinsp") add_dependencies(sinsp tbb b64 luajit) -# explicitly force this dependency to use the system OpenSSL -set(USE_BUNDLED_OPENSSL OFF) - # explicitly disable the tests of this dependency set(CREATE_TEST_TARGETS OFF) if(USE_BUNDLED_DEPS) add_dependencies(scap grpc curl jq) + # explicitly force this dependency to use the system OpenSSL + set(USE_BUNDLED_OPENSSL ON) endif()