diff options
| author | Jim Blandy | 1993-05-23 22:31:53 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-23 22:31:53 +0000 |
| commit | 94823a5eee8343d3cf49a5fa8bbc4abca5e0c416 (patch) | |
| tree | 7f89f4c1cad74abc9ebc3f5453548473ff49ca0f /src | |
| parent | 00c582c721a715978dbf87cc1d0e9d9bc32c8d4b (diff) | |
| download | emacs-94823a5eee8343d3cf49a5fa8bbc4abca5e0c416.tar.gz emacs-94823a5eee8343d3cf49a5fa8bbc4abca5e0c416.zip | |
Changes for SGI from Matthew J Brown <mjb@doc.ic.ac.uk>.
* m/iris4d.h, m/iris5d.h: Don't use the --cckr CC switch if we're
using GCC.
(NEED_SIOCTL): Move this to...
* s/irix3-3.h (NEED_SIOCTL): ... here; apparently it's not
necessary in irix4-0.h.
* s/irix4-0.h: Remove declaration of getpty; apparently Irix 4.0
already declares this elsewhere.
(PTY_TTY_NAME_SPRINTF): #undef this before re-#defining it.
* m/ibmps2-aix.h, m/pfa50.h, s/hpux.h, s/isc2-2.h, s/linux.h,
s/sco4.h, s/usg5-4.h: Remove HAVE_RENAME; configure guesses that now.
* m/iris4d.h, m/iris5d.h: Don't use the --cckr CC switch if we're
using GCC.
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/iris5d.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/m/iris5d.h b/src/m/iris5d.h index dd41d312355..da163e62595 100644 --- a/src/m/iris5d.h +++ b/src/m/iris5d.h | |||
| @@ -190,6 +190,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 190 | #define XSETMARKBIT(a,b) ((a) = ((a) & ~MARKBIT) | ((b) ? MARKBIT : 0)) | 190 | #define XSETMARKBIT(a,b) ((a) = ((a) & ~MARKBIT) | ((b) ? MARKBIT : 0)) |
| 191 | #define XUNMARK(a) ((a) = (((unsigned)(a) << INTBITS-GCTYPEBITS-VALBITS) >> INTBITS-GCTYPEBITS-VALBITS)) | 191 | #define XUNMARK(a) ((a) = (((unsigned)(a) << INTBITS-GCTYPEBITS-VALBITS) >> INTBITS-GCTYPEBITS-VALBITS)) |
| 192 | 192 | ||
| 193 | #ifndef __GNUC__ | ||
| 193 | /* Turn off some "helpful" error checks for type mismatches | 194 | /* Turn off some "helpful" error checks for type mismatches |
| 194 | that we can't fix without breaking other machines. */ | 195 | that we can't fix without breaking other machines. */ |
| 195 | #define C_SWITCH_MACHINE -cckr | 196 | #define C_SWITCH_MACHINE -cckr |
| 197 | #endif | ||