From e7f8370ffc7371fc1fb175896c7952d99be95312 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 27 Aug 2021 11:07:58 +0200 Subject: [PATCH] Disable dangerous macOS SDK macros They define macros such as "check()" which causes our code to break as we have methods with that name. --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 62b87a2e..6d765f75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,6 +106,11 @@ if(WIN32) add_definitions(-D_WIN32_WINNT=0x0601) endif() +# Legacy macros (macOS 10.12 and older) conflict with our code +if(APPLE) + add_definitions(-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0) +endif() + if(CMAKE_SIZEOF_VOID_P MATCHES 8) message(STATUS "64-bit build") else() -- 2.39.5