Commit 2b2271f8 by Roger Sayle Committed by Roger Sayle

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
parent 01021d75
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> 2007-07-12 Matthias Klose <doko@ubuntu.com>
* gnu/classpath/jdwp/util/MethodResult.h, * gnu/classpath/jdwp/util/MethodResult.h,
......
...@@ -18,6 +18,9 @@ details. */ ...@@ -18,6 +18,9 @@ details. */
#include <fcntl.h> #include <fcntl.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H #ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h> #include <sys/resource.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment