Mercurial > emacs
annotate src/m/irist.h @ 14156:e8597b3f58cf
Noted that NCSA 1.5 httpd now uses this file.
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Fri, 12 Jan 1996 18:30:11 +0000 |
parents | 1d4654a97585 |
children | ee40177f6c68 |
rev | line source |
---|---|
456 | 1 /* machine description file for Silicon Graphics Iris 2500 Turbos; |
2 also possibly for non-turbo Irises with system release 2.5. | |
3 Copyright (C) 1985, 1986 Free Software Foundation, Inc. | |
4 | |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
3699 | 9 the Free Software Foundation; either version 2, or (at your option) |
456 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | |
21 | |
22 /* The following line tells the configuration script what sort of | |
23 operating system this machine is likely to run. | |
24 USUAL-OPSYS="note" | |
25 NOTE-START | |
26 Version 18 said to work; use -opsystem=irist3-5 for system version 2.5 | |
27 and -opsystem=iris3-6 for system versions 3.6 and up. | |
28 NOTE-END */ | |
29 | |
30 #if 0 | |
31 Message-Id: <8705050653.AA20004@orville.arpa> | |
32 Subject: gnu emacs 18.41 on iris [23].5 machines | |
33 Date: 04 May 87 23:53:11 PDT (Mon) | |
34 From: raible@orville.arpa | |
35 | |
36 Aside from the SIGIOT, I know of only one bug, a real strange one: | |
37 I wrote a utimes interface, which copies elements from timevals | |
38 to utimbufs. This code is known good. The problem is that in | |
39 emacs, the utime doesn't seem to take effect (i.e. doesn't change the | |
40 dates at all) unless I call report_file_error *after* the utime returns! | |
41 | |
42 if (utime (name, &utb) < 0) | |
43 return; | |
44 else | |
45 /* XXX XXX XXX */ | |
46 /* For some reason, if this is taken out, then the utime above breaks! */ | |
47 /* (i.e. it doesn't set the time. This just makes no sense... */ | |
48 /* Eric - May 4, 1987 */ | |
49 report_file_error ("Worked just find\n", Qnil); | |
50 | |
51 Without any sort of debugger that works on emacs (I know... but I don't have | |
52 *time* right now to start with gdb), it was quite time consuming to track | |
53 it down to this. | |
54 | |
55 But since this code is only used for an optional 4th argument to one command | |
56 (copy-file), it would say that it is non-critical... | |
57 #endif /* 0 */ | |
58 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
59 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
60 is the most significant byte. */ |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
61 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
62 #define WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
63 |
456 | 64 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
65 * group of arguments and treat it as an array of the arguments. */ | |
66 | |
67 /* #define NO_ARG_ARRAY */ | |
68 | |
69 /* Define WORD_MACHINE if addresses and such have | |
70 * to be corrected before they can be used as byte counts. */ | |
71 | |
72 /* #define WORD_MACHINE */ | |
73 | |
74 /* Now define a symbol for the cpu type, if your compiler | |
75 does not define it automatically: | |
76 Ones defined so far include vax, m68000, ns16000, pyramid, | |
77 orion, tahoe, APOLLO and many others */ | |
78 | |
79 #ifndef m68000 | |
80 #define m68000 | |
81 #endif | |
82 | |
83 /* Use type int rather than a union, to represent Lisp_Object */ | |
84 /* This is desirable for most machines. */ | |
85 | |
86 #define NO_UNION_TYPE | |
87 | |
88 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
89 the 24-bit bit field into an int. In other words, if bit fields | |
90 are always unsigned. | |
91 | |
92 If you use NO_UNION_TYPE, this flag does not matter. */ | |
93 | |
94 #define EXPLICIT_SIGN_EXTEND | |
95 | |
96 /* Data type of load average, as read out of kmem. */ | |
97 | |
98 #define LOAD_AVE_TYPE long | |
99 | |
100 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
101 | |
102 #define FSCALE 1.0 | |
103 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
104 | |
105 /* Define CANNOT_DUMP on machines where unexec does not work. | |
106 Then the function dump-emacs will not be defined | |
107 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
108 | |
109 /* #define CANNOT_DUMP */ | |
110 | |
111 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
112 pure and impure space as loaded can vary, and even their | |
113 relative order cannot be relied on. | |
114 | |
115 Otherwise Emacs assumes that text space precedes data space, | |
116 numerically. */ | |
117 | |
118 /* #define VIRT_ADDR_VARIES */ | |
119 | |
120 /* Define C_ALLOCA if this machine does not support a true alloca | |
121 and the one written in C should be used instead. | |
122 Define HAVE_ALLOCA to say that the system provides a properly | |
123 working alloca function and it should be used. | |
124 Define neither one if an assembler-language alloca | |
125 in the file alloca.s should be used. */ | |
126 | |
127 /* #define C_ALLOCA */ | |
128 #define HAVE_ALLOCA | |
129 | |
130 /* Define NO_REMAP if memory segmentation makes it not work well | |
131 to change the boundary between the text section and data section | |
132 when Emacs is dumped. If you define this, the preloaded Lisp | |
133 code will not be sharable; but that's better than failing completely. */ | |
134 | |
135 /* #define NO_REMAP */ | |
136 | |
137 /* There is an inconsistency between the sgi assembler, linker which barfs | |
138 on these. */ | |
139 | |
140 #define internal_with_output_to_temp_buffer stupid_long_name1 | |
141 #define Finsert_abbrev_table_description stupid_long_name2 |