mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-30 16:30:22 +08:00
name-finder.h: don't #include sys/wait.h unless HAVE_SYS_WAIT_H
2002-02-06 Adam Megacz <adam@xwt.org> * name-finder.h: don't #include sys/wait.h unless HAVE_SYS_WAIT_H From-SVN: r49564
This commit is contained in:
parent
b1d246853d
commit
4048d33691
@ -1,3 +1,7 @@
|
||||
2002-02-06 Adam Megacz <adam@xwt.org>
|
||||
|
||||
* name-finder.h: don't #include sys/wait.h unless HAVE_SYS_WAIT_H
|
||||
|
||||
2002-02-06 Anthony Green <green@redhat.com>
|
||||
|
||||
* java/net/natPlainSocketImpl.cc: Fix DISABLE_JAVA_NET targets.
|
||||
|
653
libjava/configure
vendored
653
libjava/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -772,6 +772,7 @@ AC_CHECK_HEADERS(inttypes.h, [
|
||||
AC_DEFINE(HAVE_INTTYPES_H, 1, [Define if <inttypes.h> is available])
|
||||
AC_DEFINE(JV_HAVE_INTTYPES_H, 1, [Define if <inttypes.h> is available])
|
||||
])
|
||||
AC_HEADER_SYS_WAIT()
|
||||
|
||||
AC_CHECK_TYPE([ssize_t], [int])
|
||||
|
||||
|
@ -17,7 +17,10 @@ details. */
|
||||
#include <jvm.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef HAVE_SYS_WAIT_H
|
||||
#include <sys/wait.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
Loading…
Reference in New Issue
Block a user