natPosixProcess.cc: Include <sys/time.h> before <sys/resource.h> to restore bootstrap on...

* java/lang/natPosixProcess.cc: Include <sys/time.h> before
	<sys/resource.h> to restore bootstrap on powerpc-apple-darwin7.9.0.

From-SVN: r126621
This commit is contained in:
Roger Sayle 2007-07-13 13:53:43 +00:00 committed by Roger Sayle
parent 01021d7569
commit 2b2271f8f0
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-07-13 Roger Sayle <roger@eyesopen.com>
* java/lang/natPosixProcess.cc: Include <sys/time.h> before
<sys/resource.h> to restore bootstrap on powerpc-apple-darwin7.9.0.
2007-07-12 Matthias Klose <doko@ubuntu.com>
* gnu/classpath/jdwp/util/MethodResult.h,

View File

@ -18,6 +18,9 @@ details. */
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif