From d2a77ae23b3e51d88ef17a769bc0eb3d9d7d00b9 Mon Sep 17 00:00:00 2001 From: Andre Paiusco Date: Fri, 10 Oct 2025 22:29:53 +0200 Subject: [PATCH] Several libcrypto symbols being used and not found properly --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7c7196..d8a5a2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ endif() if(OPENSSL_FOUND) add_definitions(-DHAVE_OPENSSL) - target_link_libraries(redfish ${OPENSSL_SSL_LIBRARY}) + target_link_libraries(redfish ${OPENSSL_SSL_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY}) endif()