diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-09 16:45:21 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-09 16:45:21 +0000 |
commit | ea8a9737d45012506b39637b6f56fb07bfeeec11 (patch) | |
tree | da4df211fee766d4d53bbac889cca40335d7a0f3 /contrib | |
parent | 98d26ece3677faf0365eeaff9e1ad4282da7818e (diff) | |
download | gcc-ea8a9737d45012506b39637b6f56fb07bfeeec11.tar.gz |
Regenerated, based on update to inclhack.def
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22361 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fixinc/fixincl.x | 6 | ||||
-rwxr-xr-x | contrib/fixinc/inclhack.sh | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/contrib/fixinc/fixincl.x b/contrib/fixinc/fixincl.x index e7a4864f209..2ada4ae0a43 100644 --- a/contrib/fixinc/fixincl.x +++ b/contrib/fixinc/fixincl.x @@ -1,7 +1,7 @@ /* * DO NOT EDIT THIS FILE (fixincl.x) * - * It has been autogen-ed Wednesday August 5, 1998 at 10:43:15 AM PDT + * It has been autogen-ed Wednesday September 9, 1998 at 04:44:05 PM PDT * From the definitions inclhack.def * and the template file fixincl.tpl * @@ -298,7 +298,9 @@ tSCC zAvoid_BoolName[] = * File name selection pattern */ tSCC zAvoid_BoolList[] = - "|" "curses.h" "|"; + "|" "curses.h" + "|" "term.h" + "|" "tinfo.h" "|"; /* * Machine/OS name selection pattern */ diff --git a/contrib/fixinc/inclhack.sh b/contrib/fixinc/inclhack.sh index a056e1ba3b4..e0f3e49e160 100755 --- a/contrib/fixinc/inclhack.sh +++ b/contrib/fixinc/inclhack.sh @@ -2,7 +2,7 @@ # # DO NOT EDIT THIS FILE (inclhack.sh) # -# It has been autogen-ed Tuesday June 02, 1998 at 06:45:50 AM PDT +# It has been autogen-ed Wednesday September 9, 1998 at 04:44:05 PM PDT # From the definitions inclhack.def # and the template file inclhack.tpl # @@ -495,7 +495,9 @@ struct rusage; # # Fix 9: Avoid_Bool # - case "$file" in ./curses.h ) + case "$file" in ./curses.h | \ + ./term.h | \ + ./tinfo.h ) fixlist="${fixlist} avoid_bool" if [ ! -r ${DESTDIR}/$file ] |