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.
This commit is contained in:
Dale Glass 2021-11-04 18:43:39 +01:00
parent 61367ffd47
commit 2eabd40215

View file

@ -8,7 +8,7 @@ link_hifi_libraries(embedded-webserver networking shared)
package_libraries_for_deployment() package_libraries_for_deployment()
# find OpenSSL # find OpenSSL
find_package(OpenSSL REQUIRED) find_package(OpenSSL 1.1.0 REQUIRED)
if (APPLE AND ${OPENSSL_INCLUDE_DIR} STREQUAL "/usr/include") 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 # this is a user on OS X using system OpenSSL, which is going to throw warnings since they're deprecating for their common crypto