Remove special case for IRIX 4.0.1 that was superseded

by a more general fix to fixincludes.

From-SVN: r4814
This commit is contained in:
Paul Eggert 1993-07-01 18:15:17 +00:00
parent 56f8e5e67c
commit 458e8901e3
1 changed files with 0 additions and 14 deletions

View File

@ -784,20 +784,6 @@ if [ -r ${LIB}/$file ]; then
fi
fi
# Fix line in IRIX 4.0.1 header file. The sed script turns
# #define EM_CTRL (CUTIOC|0x1)
# into
# #define EM_CTRL (CUTIOC|0x'1')
file=sys/t3270reg.h
if [ -r ${LIB}/$file ]; then
echo Fixing $file, overeager sed script
sed -e "s/0x'1'/0x1/" ${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
# Turning // comments into /* */ comments trashes this IRIX 4.0.1
# header file, which embeds // comments inside multi-line /* */
# comments. If this looks like the IRIX header file, we refix it by