From 6a0b17f8feb29dca21319e363d1832bebafb7158 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 1 Dec 2023 14:13:07 +0000 Subject: [PATCH] CMake: update required enet version Dolphin now relies on ENET_SOCKOPT_TTL which was merged upstream but not released yet. This fix assumes that enet continues its current versioning scheme. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e7e0b222e..3f0c2de640 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -659,7 +659,7 @@ endif() dolphin_find_optional_system_library(pugixml Externals/pugixml) -dolphin_find_optional_system_library_pkgconfig(ENET libenet>=1.3.8 enet::enet Externals/enet) +dolphin_find_optional_system_library_pkgconfig(ENET libenet>=1.3.18 enet::enet Externals/enet) dolphin_find_optional_system_library_pkgconfig(xxhash libxxhash>=0.8.2 xxhash::xxhash Externals/xxhash)