From 4a355699219710d0a9ad620722393b3d9a16d84d Mon Sep 17 00:00:00 2001 From: comex Date: Sun, 25 Jun 2023 14:57:34 -0700 Subject: Fixes: - Add missing virtual destructor on `SSLBackend`. - On Windows, filter out `POLLWRBAND` (one of the new flags added) when calling `WSAPoll`, because despite the constant being defined on Windows, passing it calls `WSAPoll` to yield `EINVAL`. - Reduce OpenSSL version requirement to satisfy CI; I haven't tested whether it actually builds (or runs) against 1.1.1, but if not, I'll figure it out. - Change an instance of memcpy to memmove, even though the arguments cannot overlap, to avoid a [strange GCC error](https://github.com/yuzu-emu/yuzu/pull/10912#issuecomment-1606283351). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index c44febbc2..bd3808515 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -325,7 +325,7 @@ if (MINGW) endif() if(ENABLE_OPENSSL) - find_package(OpenSSL 3.0.0 REQUIRED) + find_package(OpenSSL 1.1.1 REQUIRED) endif() # Please consider this as a stub -- cgit v1.2.3