Mercurial > emacs
annotate src/m/delta88k.h @ 13581:e69e87bdc813
(tmm-prompt): Delete tmm-add-prompt if we fail.
Don't switch to *Completions* if it wasn't created.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 18 Nov 1995 15:57:50 +0000 |
parents | 1d4654a97585 |
children | ee40177f6c68 |
rev | line source |
---|---|
521 | 1 /* Machine description file for Motorola System V/88 machines |
2 Copyright (C) 1985 Free Software Foundation, Inc. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
3700
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
6 GNU Emacs is free software; you can redistribute it and/or modify |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
9 any later version. |
521 | 10 |
3700
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
11 GNU Emacs is distributed in the hope that it will be useful, |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
14 GNU General Public License for more details. |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
15 |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
17 along with GNU Emacs; see the file COPYING. If not, write to |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
d76398601a0b
Update GPL references - version 2
Jim Blandy <jimb@redhat.com>
parents:
3680
diff
changeset
|
19 |
521 | 20 |
21 /* The following line tells the configuration script what sort of | |
22 operating system this machine is likely to run. | |
23 USUAL-OPSYS="usg5-3" */ | |
24 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
25 /* 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
|
26 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
|
27 |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
28 #define WORDS_BIG_ENDIAN |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
29 |
521 | 30 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
31 * group of arguments and treat it as an array of the arguments. */ | |
32 | |
33 #define NO_ARG_ARRAY | |
34 | |
35 /* Define WORD_MACHINE if addresses and such have | |
36 * to be corrected before they can be used as byte counts. */ | |
37 | |
38 /* #define WORD_MACHINE */ | |
39 | |
40 /* Now define a symbol for the cpu type, if your compiler | |
41 does not define it automatically: | |
42 Ones defined so far include vax, m68000, ns16000, pyramid, | |
43 orion, tahoe, APOLLO and many others */ | |
44 | |
45 #ifndef m88000 /* Some 88k C compilers already define this */ | |
46 #define m88000 | |
47 #endif | |
48 | |
49 /* Now define a symbol for the cpu type, if your compiler | |
50 does not define it automatically. */ | |
51 | |
52 | |
53 /* Use type int rather than a union, to represent Lisp_Object */ | |
54 /* This is desirable for most machines. */ | |
55 | |
56 #define NO_UNION_TYPE | |
57 | |
58 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
59 the 24-bit bit field into an int. In other words, if bit fields | |
60 are always unsigned. | |
61 | |
62 If you use NO_UNION_TYPE, this flag does not matter. */ | |
63 | |
64 /* #define EXPLICIT_SIGN_EXTEND */ | |
65 | |
66 /* Data type of load average, as read out of kmem. */ | |
67 /* No load average on Motorola machines. */ | |
68 /* #define LOAD_AVE_TYPE double */ | |
69 | |
70 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
71 /* #define LOAD_AVE_CVT(x) ((int) ((x) * 100.0)) */ | |
72 | |
73 /* Define CANNOT_DUMP on machines where unexec does not work. | |
74 Then the function dump-emacs will not be defined | |
75 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
76 | |
77 /* #define CANNOT_DUMP */ | |
78 | |
79 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
80 pure and impure space as loaded can vary, and even their | |
81 relative order cannot be relied on. | |
82 | |
83 Otherwise Emacs assumes that text space precedes data space, | |
84 numerically. */ | |
85 | |
86 /* #define VIRT_ADDR_VARIES */ | |
87 | |
88 /* Define NO_REMAP if memory segmentation makes it not work well | |
89 to change the boundary between the text section and data section | |
90 when Emacs is dumped. If you define this, the preloaded Lisp | |
91 code will not be sharable; but that's better than failing completely. */ | |
92 | |
93 #define NO_REMAP | |
94 | |
95 /* Define C_ALLOCA if this machine does not support a true alloca | |
96 and the one written in C should be used instead. | |
97 Define HAVE_ALLOCA to say that the system provides a properly | |
98 working alloca function and it should be used. | |
99 Define neither one if an assembler-language alloca | |
100 in the file alloca.s should be used. */ | |
101 | |
102 /* BEM: Distributed asm alloca doesn't work. Don't know about libPW.a. | |
103 C ALLOCA is safe and fast enough for now. */ | |
104 | |
8706
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
105 #ifdef __GNUC__ |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
106 #define HAVE_ALLOCA /* ... and be sure that no other ones are tried out. */ |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
107 #undef C_ALLOCA |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
108 #else /* not __GNUC__ */ |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
109 #undef HAVE_ALLOCA |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
110 #define C_ALLOCA /* Use the alloca() supplied in alloca.c. */ |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
111 #define STACK_DIRECTION -1 /* The stack grows towards lower addresses. */ |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
112 #endif /* __GNUC__ */ |
521 | 113 |
114 /* Motorola SysV has PTYs. Not all usg3-5 systems do, so this is defined | |
115 here. */ | |
116 | |
117 #define HAVE_PTYS | |
118 #define SYSV_PTYS | |
119 | |
120 /* Ditto for IPC. */ | |
121 | |
122 | |
123 /* | |
124 * we now have job control in R32V1 | |
125 */ | |
126 #undef NOMULTIPLEJOBS | |
127 | |
128 /* | |
129 * we have bcopy, bzero, bcmp in libc.a (what isn't in libc.a?) | |
130 */ | |
131 #define BSTRING | |
132 | |
133 /* | |
134 * sockets are in R32V1 | |
135 */ | |
136 #define HAVE_SOCKETS | |
137 | |
138 /* | |
139 * we have the wrong name for networking libs | |
140 */ | |
4300
3596e40f5c4a
[USG5_4] (LIBX11_SYSTEM): Don't redefine in this case.
Richard M. Stallman <rms@gnu.org>
parents:
3775
diff
changeset
|
141 #ifdef USG5_4 |
3596e40f5c4a
[USG5_4] (LIBX11_SYSTEM): Don't redefine in this case.
Richard M. Stallman <rms@gnu.org>
parents:
3775
diff
changeset
|
142 /* rms: not needed; LIB_X11_LIB deals with this. */ |
3596e40f5c4a
[USG5_4] (LIBX11_SYSTEM): Don't redefine in this case.
Richard M. Stallman <rms@gnu.org>
parents:
3775
diff
changeset
|
143 /* #define LIBX11_SYSTEM -lX11 */ |
3596e40f5c4a
[USG5_4] (LIBX11_SYSTEM): Don't redefine in this case.
Richard M. Stallman <rms@gnu.org>
parents:
3775
diff
changeset
|
144 #else |
8706
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
145 #undef LIB_X11_LIB /* We don't have the shared libs as assumed in usg5-3.h. */ |
521 | 146 #undef LIBX11_SYSTEM |
147 #define LIBX11_SYSTEM -lnsl -lbsd | |
2413
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
148 #endif /* USG5_4 */ |
521 | 149 |
150 #define BROKEN_FIONREAD | |
151 | |
3775
0ea7f6cb0a35
(LIBS_SYSTEM): Don't attempt to #define this if we already have a
Jim Blandy <jimb@redhat.com>
parents:
3773
diff
changeset
|
152 /* previously defined in usg5-4, if we choose to use that. */ |
0ea7f6cb0a35
(LIBS_SYSTEM): Don't attempt to #define this if we already have a
Jim Blandy <jimb@redhat.com>
parents:
3773
diff
changeset
|
153 #ifndef LIBS_SYSTEM |
2413
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
154 #ifdef USG5_4 |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
155 #define LIBS_SYSTEM -lsocket -lnsl |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
156 #else |
521 | 157 #define LIBS_SYSTEM -lbsd -lg |
2413
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
158 #endif /* USG5_4 */ |
3775
0ea7f6cb0a35
(LIBS_SYSTEM): Don't attempt to #define this if we already have a
Jim Blandy <jimb@redhat.com>
parents:
3773
diff
changeset
|
159 #endif |
521 | 160 |
8706
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
161 #define HAVE_TERMIOS |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
162 #undef HAVE_TERMIO |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
163 #define NO_TERMIO |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
164 #undef sigsetmask |
521 | 165 |
166 #define NO_SIOCTL_H | |
2413
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
167 |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
168 #ifdef USG5_4 |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
169 #ifdef HAVE_X_WINDOWS |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
170 #else |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
171 #undef BSTRING |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
172 #endif /* HAVE_X_WINDOWS */ |
b477af00fb87
[USG5_4]: Alternate defining of LIBS_SYSTEM,
Richard M. Stallman <rms@gnu.org>
parents:
750
diff
changeset
|
173 #endif /* USG5_4 */ |
2415 | 174 |
175 #define NO_PTY_H | |
8706
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
176 |
4e19bcae472e
[__GNUC__] (HAVE_ALLOCA): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
4300
diff
changeset
|
177 #define USE_GETOBAUD |