aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-10-26 17:03:37 +0000
committerRichard Stallman <rms@gnu.org>1993-10-26 17:03:37 +0000
commitad96180a1120945d0bb6e308873c5c9d225109a6 (patch)
tree2cd1fd7159d4970d187f32860e1dfdffdab7a90a
parent03d5b1f5a35bbdb7f2a62d8b3ebd2bc395296507 (diff)
downloadgcc-ad96180a1120945d0bb6e308873c5c9d225109a6.zip
gcc-ad96180a1120945d0bb6e308873c5c9d225109a6.tar.gz
gcc-ad96180a1120945d0bb6e308873c5c9d225109a6.tar.bz2
Fix NeXT <sys/wait.h> problem in <bsd/sys/wait.h>
as well, since that is where the file is in NeXTStep 3.0. From-SVN: r5896
-rwxr-xr-xgcc/fixincludes20
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes
index 57de826..c1e78f6 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