From 70c94b4a91320134115736fd06c0bd52e250eac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= Date: Thu, 10 Sep 2015 19:58:40 +0200 Subject: [PATCH 07/15] src/misc: fix compilation for OS without fork() --- src/misc/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/cpu.c b/src/misc/cpu.c index 28f127a..bacf842 100644 --- a/src/misc/cpu.c +++ b/src/misc/cpu.c @@ -63,7 +63,7 @@ static uint32_t cpu_flags; #if defined (__i386__) || defined (__x86_64__) || defined (__powerpc__) \ || defined (__ppc__) || defined (__ppc64__) || defined (__powerpc64__) -# if !defined (_WIN32) && !defined (__OS2__) +# if !defined (_WIN32) && !defined (__OS2__) && !defined (__APPLE__) static bool vlc_CPU_check (const char *name, void (*func) (void)) { pid_t pid = fork(); -- 2.8.4