diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1995-03-10 17:02:02 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1995-03-10 17:02:02 +0000 |
commit | 0323c17857ee9c573c1f756e22acf940b433bc16 (patch) | |
tree | a8d37331c42d8d6f05fa9febc56d86bb446b41fc /gcc/fixincludes | |
parent | 3be29ba788c9fe736698a1c96e3a83b0ecf1b7df (diff) | |
download | gcc-0323c17857ee9c573c1f756e22acf940b433bc16.zip gcc-0323c17857ee9c573c1f756e22acf940b433bc16.tar.gz gcc-0323c17857ee9c573c1f756e22acf940b433bc16.tar.bz2 |
Fix `typedef struct term;' on hppa1.1-hp-hpux9.
From-SVN: r9156
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index f0af1b5..02ce867 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1874,6 +1874,30 @@ if [ -r ${LIB}/$file ]; then fi fi +# Fix `typedef struct term;' on hppa1.1-hp-hpux9. +file=curses.h +if [ -r $file ] && [ ! -r ${LIB}/$file ]; then + cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file" + chmod +w ${LIB}/$file 2>/dev/null + chmod a+r ${LIB}/$file 2>/dev/null +fi + +if [ -r ${LIB}/$file ]; then + echo Fixing $file + sed -e 's/^[ ]*typedef[ ][ ]*\(struct[ ][ ]*term[ ]*;[ ]*\)$/\1/' \ + ${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 + else + # Find any include directives that use "file". + for include in `egrep '^[ ]*#[ ]*include[ ]*"[^/]' ${LIB}/$file | sed -e 's/^[ ]*#[ ]*include[ ]*"\([^"]*\)".*$/\1/'`; do + dir=`echo $file | sed -e s'|/[^/]*$||'` + required="$required ${INPUT} $dir/$include ${LIB}/$dir/$include" + done + fi +fi + # For C++, avoid any typedef or macro definition of bool, and use the # built in type instead. for files in curses.h; do |