From 2f46c0abcb724d5d98fc1fe0ab816c827752ae4e Mon Sep 17 00:00:00 2001 From: "K. Noel Belcourt" Date: Fri, 30 May 2008 16:22:39 +0000 Subject: [PATCH] Change execunix.c to always use fork() instead of vfork() on the Mac. This works around known issues with bjam on PPC under Tiger and a problem reported by Rene with bjam on x86 under Leopard. A future revision will change execvp() use to execve() to enable the Mac to once again use the more efficient vfork() on the Mac. [SVN r45956] --- src/engine/execunix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/execunix.c b/src/engine/execunix.c index f651c61a8..e30542b03 100644 --- a/src/engine/execunix.c +++ b/src/engine/execunix.c @@ -25,7 +25,7 @@ # ifdef USE_EXECUNIX # include -# if defined(__APPLE__) && defined(__ppc__) +# if defined(__APPLE__) # define NO_VFORK # endif