From: Serge Skorokhodov (serge.skorokhodov_at_[hidden])
Date: 2005-07-31 07:42:22


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