|
 |
Compiling on an old Pentium !!! laptop so it's slow going. Well, found some
NetBSD specific issues. Fortunately I found this:
http://bugs.povray.org/task/195
These are what I encountered so far (still compiling):
1) vfe/unix/platformbase.cpp uses CLOCK_THREAD_CPUTIME_ID, which is not provided
course not a correct fix).
2) vfe/unix/platformbase.cpp uses CLOCK_PROCESS_CPUTIME_ID, which is not
just add defined(NetBSD) to the FreeBSD case, except for point 3.
3) vfe/unix/vfeplatform.cpp uses WEXITSTATUS. For this, sys/wait.h should be
included. The obvious fix is
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
Post a reply to this message
|
 |