Mercurial > emacs
annotate src/s/msdos.h @ 8427:bc548090f760
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 03 Aug 1994 00:12:07 +0000 |
parents | 9198d6e1f11c |
children | e4e935319d55 |
rev | line source |
---|---|
5503 | 1 /* System description file for MS-DOS |
2 | |
3 Copyright (C) 1993 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 | |
9 the Free Software Foundation; either version 2, or (at your option) | |
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 /* Note: lots of stuff here was taken from s-msdos.h in demacs. */ | |
22 | |
23 | |
24 /* | |
25 * Define symbols to identify the version of Unix this is. | |
26 * Define all the symbols that apply correctly. | |
27 */ | |
28 | |
29 /* #define UNIPLUS */ | |
30 /* #define USG5 */ | |
31 /* #define USG */ | |
32 /* #define HPUX */ | |
33 /* #define UMAX */ | |
34 /* #define BSD4_1 */ | |
35 /* #define BSD4_2 */ | |
36 /* #define BSD4_3 */ | |
37 /* #define BSD */ | |
38 /* #define VMS */ | |
39 #ifndef MSDOS | |
40 #define MSDOS | |
41 #endif | |
42 #undef BSD | |
43 #undef VMS | |
44 | |
45 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
46 It sets the Lisp variable system-type. */ | |
47 | |
48 #define SYSTEM_TYPE "ms-dos" | |
49 | |
50 #define SYMS_SYSTEM syms_of_dosfns() | |
51 | |
52 /* NOMULTIPLEJOBS should be defined if your system's shell | |
53 does not have "job control" (the ability to stop a program, | |
54 run some other program, then continue the first one). */ | |
55 | |
56 #define NOMULTIPLEJOBS | |
57 | |
58 /* Emacs can read input using SIGIO and buffering characters itself, | |
59 or using CBREAK mode and making C-g cause SIGINT. | |
60 The choice is controlled by the variable interrupt_input. | |
61 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO) | |
62 | |
63 SIGIO can be used only on systems that implement it (4.2 and 4.3). | |
64 CBREAK mode has two disadvatages | |
65 1) At least in 4.2, it is impossible to handle the Meta key properly. | |
66 I hear that in system V this problem does not exist. | |
67 2) Control-G causes output to be discarded. | |
68 I do not know whether this can be fixed in system V. | |
69 | |
70 Another method of doing input is planned but not implemented. | |
71 It would have Emacs fork off a separate process | |
72 to read the input and send it to the true Emacs process | |
73 through a pipe. | |
74 */ | |
75 | |
76 /* #define INTERRUPT_INPUT */ | |
77 | |
78 /* Letter to use in finding device name of first pty, | |
79 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
80 | |
81 /* #define FIRST_PTY_LETTER 'a' */ | |
82 | |
83 /* | |
84 * Define HAVE_TIMEVAL if the system supports the BSD style clock values. | |
85 * Look in <sys/time.h> for a timeval structure. | |
86 */ | |
87 | |
88 #define HAVE_TIMEVAL | |
89 | |
90 /* | |
91 * Define HAVE_SELECT if the system supports the `select' system call. | |
92 */ | |
93 | |
94 /* #define HAVE_SELECT */ | |
95 | |
96 /* | |
97 * Define HAVE_PTYS if the system supports pty devices. | |
98 */ | |
99 | |
100 /* #define HAVE_PTYS */ | |
101 | |
102 /* | |
103 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate | |
104 * The 4.2 opendir, etc., library functions. | |
105 */ | |
106 | |
107 /* #define NONSYSTEM_DIR_LIBRARY */ | |
108 | |
109 #define SYSV_SYSTEM_DIR | |
110 | |
111 /* Define this symbol if your system has the functions bcopy, etc. */ | |
112 | |
113 #define BSTRING | |
114 | |
8250
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
115 /* Define this is the compiler understands `volatile'. */ |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
116 #define HAVE_VOLATILE |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
117 |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
118 |
5503 | 119 /* subprocesses should be defined if you want to |
120 have code for asynchronous subprocesses | |
121 (as used in M-x compile and M-x shell). | |
122 This is generally OS dependent, and not supported | |
123 under most USG systems. */ | |
124 | |
125 #undef subprocesses | |
126 | |
127 /* If your system uses COFF (Common Object File Format) then define the | |
128 preprocessor symbol "COFF". */ | |
129 | |
130 #define COFF | |
131 | |
132 /* define MAIL_USE_FLOCK if the mailer uses flock | |
133 to interlock access to /usr/spool/mail/$USER. | |
134 The alternative is that a lock file named | |
135 /usr/spool/mail/$USER.lock. */ | |
136 | |
137 /* #define MAIL_USE_FLOCK */ | |
138 | |
139 /* Define CLASH_DETECTION if you want lock files to be written | |
140 so that Emacs can tell instantly when you try to modify | |
141 a file that someone else has modified in his Emacs. */ | |
142 | |
143 /* #define CLASH_DETECTION */ | |
144 | |
145 /* Here, on a separate page, add any special hacks needed | |
146 to make Emacs work on this system. For example, | |
147 you might define certain system call names that don't | |
148 exist on your system, or that do different things on | |
149 your system and must be used only through an encapsulation | |
150 (Which you should place, by convention, in sysdep.c). */ | |
151 | |
152 /* Some compilers tend to put everything declared static | |
153 into the initialized data area, which becomes pure after dumping Emacs. | |
154 On these systems, you must #define static as nothing to foil this. | |
155 Note that emacs carefully avoids static vars inside functions. */ | |
156 | |
157 /* #define static */ | |
158 | |
159 /* we use djgcc's malloc */ | |
160 /* #define SYSTEM_MALLOC */ | |
161 /* setjmp and longjmp can safely replace _setjmp and _longjmp, | |
162 but they will run slower. */ | |
163 | |
164 #define _setjmp setjmp | |
165 #define _longjmp longjmp | |
166 | |
167 #define NO_MODE_T | |
168 | |
169 /* we can use dj's getpagesize() */ | |
170 #define HAVE_GETPAGESIZE | |
171 | |
172 /* New chdir () routine. */ | |
173 #ifdef chdir | |
174 #undef chdir | |
175 #endif | |
176 #define chdir sys_chdir | |
177 | |
178 #define LIBS_SYSTEM -lpc | |
179 | |
180 /* This somehow needs to be defined even though we use COFF. */ | |
181 #define TEXT_START -1 | |
182 | |
183 #define ORDINARY_LINK | |
184 | |
185 /* command.com does not under stand `...` so we define this. */ | |
186 #define LIB_GCC -Lgcc | |
187 #define DONT_NEED_ENVIRON | |
188 #define SEPCHAR ';' | |
189 | |
190 #define NULL_DEVICE "nul" | |
191 #define EXEC_SUFFIXES ".exe:.com:.bat:" | |
192 | |
193 #define O_RDONLY 0x0001 | |
194 #define O_WRONLY 0x0002 | |
195 #define O_RDWR 0x0004 | |
196 #define O_CREAT 0x0100 | |
197 #define O_TRUNC 0x0200 | |
198 #define O_EXCL 0x0400 | |
199 #define O_APPEND 0x0800 | |
200 #define O_TEXT 0x4000 | |
201 #define O_BINARY 0x8000 | |
202 | |
203 #define HAVE_INVERSE_HYPERBOLIC | |
204 #define FLOAT_CHECK_DOMAIN | |
7362 | 205 #define NO_MATHERR |
5503 | 206 |
207 /* When $TERM is "internal" then this is substituted: */ | |
208 #define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\ | |
209 :co#80:li#25:km:\ | |
210 :cm=\E@%.%.:\ | |
211 :do=^J:le=^H:up=\EU:ri=\ER:\ | |
212 :ti=\EA\027:te=\EA\007\EE:\ | |
213 :so=\EA\077:se=\EA\027:\ | |
214 :ms:mb=\EX\200:md=\EX\010:mk=\EA\161:me=\EA\027:\ | |
215 :cl=\EC:ce=\EE:\ | |
7668
c5ae1297d994
(INTERNAL_TERMINAL): Allow audio bell.
Richard M. Stallman <rms@gnu.org>
parents:
7362
diff
changeset
|
216 :vb=\EB\140:bl=\007:" |
5503 | 217 #define fflush internal_flush |
218 | |
219 /* Define this to a function (Fdowncase, Fupcase) if your file system | |
220 likes that */ | |
221 #define FILE_SYSTEM_CASE Fdowncase | |
222 | |
6382 | 223 /* bcopy under djgpp is quite safe */ |
224 #define GAP_USE_BCOPY | |
225 #define BCOPY_UPWARD_SAFE 1 | |
226 #define BCOPY_DOWNWARD_SAFE 1 | |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
227 |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
228 /* We need a little extra space, see ../../lisp/loadup.el */ |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
229 #define PURESIZE 240000 |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
230 |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
231 /* We have (the code to control) a mouse. */ |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
232 #define HAVE_MOUSE |