diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-19 10:13:46 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-19 10:13:46 +0000 |
commit | 5a3ee0b11900ce0cb04fe347d1dc01ef501d6add (patch) | |
tree | 38f40b970a93fd0559cb16776a75f159fc13a0f8 /gcc/config.in | |
parent | 1ed7db2f1203ed557f10d87a5496286c6f0fea14 (diff) | |
download | ppe42-gcc-5a3ee0b11900ce0cb04fe347d1dc01ef501d6add.tar.gz ppe42-gcc-5a3ee0b11900ce0cb04fe347d1dc01ef501d6add.zip |
* configure.in: Don't do AC_CHECK_HEADERS(wait.h sys/wait.h).
Instead call AC_HEADER_SYS_WAIT.
* collect2.c: Don't provide defaults for sys/wait.h macros.
* gcc.c: Likewise.
* protoize.c: Likewise. Also, don't include sys/wait.h.
* system.h: Include sys/wait.h and provide macro defaults.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23712 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/config.in b/gcc/config.in index fd08dcfda7d..dba9a1c0603 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -98,6 +98,9 @@ /* Define if you don't have vprintf but do have _doprnt. */ #undef HAVE_DOPRNT +/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */ +#undef HAVE_SYS_WAIT_H + /* Define if you have <vfork.h>. */ #undef HAVE_VFORK_H @@ -218,14 +221,8 @@ /* Define if you have the <sys/times.h> header file. */ #undef HAVE_SYS_TIMES_H -/* Define if you have the <sys/wait.h> header file. */ -#undef HAVE_SYS_WAIT_H - /* Define if you have the <time.h> header file. */ #undef HAVE_TIME_H /* Define if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H - -/* Define if you have the <wait.h> header file. */ -#undef HAVE_WAIT_H |