diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-24 06:56:27 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-24 06:56:27 +0000 |
commit | 791996d16d3e154f3551c2754e26882e14176303 (patch) | |
tree | bcb27dc2ebb96e796c4c0a7d42d3bb44e1a372e2 /gcc/fixinc/inclhack.def | |
parent | b882d60dbf43e8d21e51e5f0d132e95c2aad1523 (diff) | |
download | gcc-791996d16d3e154f3551c2754e26882e14176303.zip gcc-791996d16d3e154f3551c2754e26882e14176303.tar.gz gcc-791996d16d3e154f3551c2754e26882e14176303.tar.bz2 |
inclhack.def (AAB_svr4_replace_byteorder): Enhance comment.
* fixinc/inclhack.def (AAB_svr4_replace_byteorder): Enhance
comment. Enable for DYNIX/ptx systems (when they switch to
regular fixincludes).
* fixinc/fixincl.x: Regenerate.
From-SVN: r70760
Diffstat (limited to 'gcc/fixinc/inclhack.def')
-rw-r--r-- | gcc/fixinc/inclhack.def | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 374b860..8dd5f1c 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -221,8 +221,9 @@ fix = { /* - * Completely replace <sys/byteorder.h>; with a file that implements gcc's - * optimized byteswapping. + * Completely replace <sys/byteorder.h> with a file that implements gcc's + * optimized byteswapping. (The original probably implemented some + * incompatible optimized byteswapping.) */ fix = { hackname = AAB_svr4_replace_byteorder; @@ -233,6 +234,8 @@ fix = { mach = "i[34567]86-*-solaris2.[0-4]"; mach = "powerpcle-*-solaris2.[0-4]"; mach = "sparc-*-solaris2.[0-4]"; + mach = "i[34567]86-sequent-ptx*"; + mach = "i[34567]86-sequent-sysv3*"; files = sys/byteorder.h; replace = <<- _EndOfHeader_ #ifndef _SYS_BYTEORDER_H |