
31 Jul
2005
31 Jul
'05
12:42 p.m.
Hi, The version of bjam from cvs fails to build for vc7 due to the file 'execunix.c: file unistd.h not found'. It is now: ... #if defined(sun) || defined(__sun) #include <wait.h> #endif ... but it used to be: ... #if defined(sun) || defined(__sun) #include <unistd.h> /* need to include unistd.h on sun for the vfork prototype*/ #include <wait.h> #endif ... TIA -- Serge