From 6b35ca86161a10cff7a5dee0a3042a5bd21b3bf3 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 29 Sep 2016 14:54:53 -0400 Subject: [PATCH] unix: don't include CoreServices globally on macOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In unix/internal.h, CoreServices is included for AvailabilityMacros.h. This commit just includes AvailabilityMacros.h directly instead. PR-URL: https://github.com/libuv/libuv/pull/1092 Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- src/unix/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/internal.h b/src/unix/internal.h index c7b6019e..ee76c837 100644 --- a/src/unix/internal.h +++ b/src/unix/internal.h @@ -52,7 +52,7 @@ #endif /* _AIX */ #if defined(__APPLE__) && !TARGET_OS_IPHONE -# include +# include #endif #if defined(__ANDROID__)