From 2eabd40215fde7d1cb786403c578a851c71daf8e Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Thu, 4 Nov 2021 18:43:39 +0100 Subject: [PATCH] Require OpenSSL 1.1.0 at the very least Earlier versions don't work with WebRTC, and cause linking errors. OpenSSL 1.1 is supported in Ubuntu 18.04, although 1.0 can still be installed. --- ice-server/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ice-server/CMakeLists.txt b/ice-server/CMakeLists.txt index 9234d68faf..eed795ca39 100644 --- a/ice-server/CMakeLists.txt +++ b/ice-server/CMakeLists.txt @@ -8,7 +8,7 @@ link_hifi_libraries(embedded-webserver networking shared) package_libraries_for_deployment() # find OpenSSL -find_package(OpenSSL REQUIRED) +find_package(OpenSSL 1.1.0 REQUIRED) if (APPLE AND ${OPENSSL_INCLUDE_DIR} STREQUAL "/usr/include") # this is a user on OS X using system OpenSSL, which is going to throw warnings since they're deprecating for their common crypto