Utilities: add lost openssl dependency

This commit is contained in:
Aliaksandr Averchanka
2026-01-31 15:38:40 -05:00
committed by Brad King
parent 26cdd956ac
commit 31bb76eafd
2 changed files with 10 additions and 0 deletions
+7
View File
@@ -121,6 +121,13 @@ if(NOT CMake_TEST_EXTERNAL_CMAKE)
string(APPEND DEPS_BUNDLED " ${util}")
endif()
endforeach()
# OpenSSL is not included in the UTILITIES list,
# but it is a system dependency, if used
if(CMAKE_USE_OPENSSL)
string(APPEND DEPS_SYSTEM " OPENSSL")
endif()
if(DEPS_SYSTEM)
message(STATUS "Using system-installed:${DEPS_SYSTEM}")
endif()
+3
View File
@@ -16,3 +16,6 @@
#cmakedefine CMAKE_USE_SYSTEM_LIBRHASH
#cmakedefine CMAKE_USE_SYSTEM_LIBUV
#cmakedefine CMAKE_USE_SYSTEM_ZSTD
/* Whether CMake is using OpenSSL library. */
#cmakedefine CMAKE_USE_OPENSSL