diff options
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/s/irix6-5.h | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e92e1dad809..e2428088cff 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2000-01-26 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-01-26 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef | ||
| 4 | LD_SWITCH_SYSTEM inherited from irix5-0.h. | ||
| 5 | |||
| 3 | * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo. | 6 | * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo. |
| 4 | 7 | ||
| 5 | 2000-01-25 Gerd Moellmann <gerd@gnu.org> | 8 | 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h index 8222c91e4f4..e41347d4d73 100644 --- a/src/s/irix6-5.h +++ b/src/s/irix6-5.h | |||
| @@ -2,6 +2,12 @@ | |||
| 2 | #define IRIX6_5 | 2 | #define IRIX6_5 |
| 3 | #include "irix5-0.h" | 3 | #include "irix5-0.h" |
| 4 | 4 | ||
| 5 | /* David Starks-Browning <starksb@ebi.ac.uk> reports this is necessary | ||
| 6 | for building Emacs on IRIX64 6.5 IP27 mips with GCC 2.95.2. */ | ||
| 7 | #if __GNUC__ && __GNUC_MINOR__ >= 95 | ||
| 8 | #undef LD_SWITCH_SYSTEM | ||
| 9 | #endif | ||
| 10 | |||
| 5 | /* Irix 6 tries to do 64 bits, but doesn't do it fully, | 11 | /* Irix 6 tries to do 64 bits, but doesn't do it fully, |
| 6 | so inhibit that. */ | 12 | so inhibit that. */ |
| 7 | #define IRIX_FORCE_32_BITS | 13 | #define IRIX_FORCE_32_BITS |