From 16c22477c29478d2a956b08402fe6e11b5bc24d5 Mon Sep 17 00:00:00 2001 From: superfloh247 Date: Sat, 16 Dec 2023 12:52:07 +0100 Subject: [PATCH] Update porting.h to fix build errors on macOS 14 / Xcode 15 --- src/porting.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/porting.h b/src/porting.h index bf01c3e4d..0c7598805 100644 --- a/src/porting.h +++ b/src/porting.h @@ -89,6 +89,9 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef _WIN32 // POSIX #include #include + #if defined(__MACH__) && defined(__APPLE__) + #include + #endif #endif namespace porting