mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
[__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
LD_SWITCH_SYSTEM inherited from irix5-0.h.
This commit is contained in:
parent
9e49c9901e
commit
fc3cb4607c
2 changed files with 9 additions and 0 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2000-01-26 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
|
||||
LD_SWITCH_SYSTEM inherited from irix5-0.h.
|
||||
|
||||
* bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
|
||||
|
||||
2000-01-25 Gerd Moellmann <gerd@gnu.org>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
#define IRIX6_5
|
||||
#include "irix5-0.h"
|
||||
|
||||
/* David Starks-Browning <starksb@ebi.ac.uk> reports this is necessary
|
||||
for building Emacs on IRIX64 6.5 IP27 mips with GCC 2.95.2. */
|
||||
#if __GNUC__ && __GNUC_MINOR__ >= 95
|
||||
#undef LD_SWITCH_SYSTEM
|
||||
#endif
|
||||
|
||||
/* Irix 6 tries to do 64 bits, but doesn't do it fully,
|
||||
so inhibit that. */
|
||||
#define IRIX_FORCE_32_BITS
|
||||
|
|
|
|||
Loading…
Reference in a new issue