From 77af10a52127a81f73694bde6c82cc236e0eb0fe Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 9 Dec 2016 18:01:35 +0530 Subject: [PATCH] check: Don't try to include CoreServices.h on iOS On iOS, we have MobileCoreServices.h but it's not really needed. --- libs/gst/check/libcheck/libcompat/clock_gettime.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/gst/check/libcheck/libcompat/clock_gettime.c b/libs/gst/check/libcheck/libcompat/clock_gettime.c index 0298b35267..11e8f91ee8 100644 --- a/libs/gst/check/libcheck/libcompat/clock_gettime.c +++ b/libs/gst/check/libcheck/libcompat/clock_gettime.c @@ -24,7 +24,10 @@ #include #include #include -#include +#include +# if TARGET_OS_MAC +# include +# endif #include #endif