2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

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]
This commit is contained in:
K. Noel Belcourt
2008-05-30 16:22:39 +00:00
parent 7db25f99cd
commit 2f46c0abcb

View File

@@ -25,7 +25,7 @@
# ifdef USE_EXECUNIX
# include <sys/times.h>
# if defined(__APPLE__) && defined(__ppc__)
# if defined(__APPLE__)
# define NO_VFORK
# endif