From f81547c8000a41d619263bf1d3221ef75c7ac8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 7 Feb 2024 12:43:59 +0100 Subject: [PATCH] Platform: don't suggest to disable SDL_THREADS. This used to "work", but caused various issues such as the one described in https://github.com/libsdl-org/SDL/issues/5095, and so it can't be disabled anymore as of SDL 2.24. --- src/Magnum/Platform/Sdl2Application.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Magnum/Platform/Sdl2Application.h b/src/Magnum/Platform/Sdl2Application.h index fd4be4674..96ecf2023 100644 --- a/src/Magnum/Platform/Sdl2Application.h +++ b/src/Magnum/Platform/Sdl2Application.h @@ -246,7 +246,6 @@ set(SDL_LOCALE OFF CACHE BOOL "" FORCE) set(SDL_POWER OFF CACHE BOOL "" FORCE) set(SDL_RENDER OFF CACHE BOOL "" FORCE) set(SDL_SENSOR OFF CACHE BOOL "" FORCE) -set(SDL_THREADS OFF CACHE BOOL "" FORCE) # This assumes you want to have SDL as a static library. If not, set SDL_STATIC # to OFF instead. set(SDL_SHARED OFF CACHE BOOL "" FORCE)