From ad96180a1120945d0bb6e308873c5c9d225109a6 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 26 Oct 1993 17:03:37 +0000 Subject: [PATCH] Fix NeXT problem in as well, since that is where the file is in NeXTStep 3.0. From-SVN: r5896 --- gcc/fixincludes | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gcc/fixincludes b/gcc/fixincludes index 57de8263a47..c1e78f6d72b 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1018,6 +1018,26 @@ if [ -r ${LIB}/$file ] \ fi fi +# Some versions of NeXTStep apparently have the file fixed above in +# bsd/sys/wait.h, instead. +file=bsd/sys/wait.h +if [ -r $file ] && [ ! -r ${LIB}/$file ]; then + mkdir ${LIB}/bsd 2>/dev/null + mkdir ${LIB}/bsd/sys 2>/dev/null + cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file" + chmod +w ${LIB}/$file 2>/dev/null +fi + +if [ -r ${LIB}/$file ] \ + && grep 'wait[(]union wait' ${LIB}/$file >/dev/null; then + echo Fixing $file, bad wait formal + sed -e 's@wait(union wait@wait(void@' ${LIB}/$file > ${LIB}/${file}.sed + rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file + if cmp $file ${LIB}/$file >/dev/null 2>&1; then + rm -f ${LIB}/$file + fi +fi + # Don't use or define the name va_list in stdio.h. # This is for ANSI and also to interoperate properly with gvarargs.h. file=stdio.h -- 2.30.2