From df22e0087d0f6caf66ed2c70bab802d1365592c6 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 29 Apr 2025 12:47:03 +0200 Subject: [PATCH] [client,mac] disable mac client it no longer compiles with mac os 15 --- client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 14b69c2ff..569f56374 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -60,7 +60,7 @@ if(FREERDP_VENDOR AND WITH_CLIENT) endif() endif() else() - option(WITH_CLIENT_MAC "Build native mac client" ON) + option(WITH_CLIENT_MAC "Build native mac client" OFF) if(WITH_CLIENT_MAC) add_subdirectory(Mac) endif()