From 0cdd7158bad853dd5eaff6aa59a3ea8b8fab1978 Mon Sep 17 00:00:00 2001 From: Max Danielsson Date: Tue, 3 May 2022 09:40:00 +0200 Subject: Define PLATFORM_UNIX if we're on __APPLE__ --- Source/Compat/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Compat/platform.h b/Source/Compat/platform.h index 5a82436f..aeeb1a73 100644 --- a/Source/Compat/platform.h +++ b/Source/Compat/platform.h @@ -35,7 +35,7 @@ #endif // Check unix -#if defined __unix__ +#if defined __unix__ || defined __APPLE__ #define PLATFORM_UNIX 1 #endif -- cgit v1.2.3