From: Ian Lance Taylor Date: Fri, 10 Mar 1995 17:02:02 +0000 (+0000) Subject: Fix `typedef struct term;' on hppa1.1-hp-hpux9. X-Git-Tag: misc/cutover-egcs-0~4800 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0323c17857ee9c573c1f756e22acf940b433bc16;p=thirdparty%2Fgcc.git Fix `typedef struct term;' on hppa1.1-hp-hpux9. From-SVN: r9156 --- diff --git a/gcc/fixincludes b/gcc/fixincludes index f0af1b58c943..02ce867a0c2e 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