Mercurial > emacs
annotate src/s/msdos.h @ 13335:258b67997ae6
Initial revision
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 30 Oct 1995 17:13:16 +0000 |
parents | 439506fa922e |
children | 9963cce3628b |
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 | |
9798 | 42 |
13177
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
43 #ifdef __GO32__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
44 #ifndef __DJGPP__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
45 #define __DJGPP__ 1 /* V2 defines __DJGPP__ == 2 */ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
46 #else |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
47 You lose; /* Emacs for DOS must be compiled with DJGPP V1 */ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
48 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
49 #else |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
50 You lose; /* Emacs for DOS must be compiled with DJGPP */ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
51 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
52 |
9798 | 53 #define DOS_NT /* MSDOS or WINDOWSNT */ |
5503 | 54 #undef BSD |
55 #undef VMS | |
56 | |
57 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
58 It sets the Lisp variable system-type. */ | |
59 | |
60 #define SYSTEM_TYPE "ms-dos" | |
61 | |
62 #define SYMS_SYSTEM syms_of_dosfns() | |
63 | |
64 /* NOMULTIPLEJOBS should be defined if your system's shell | |
65 does not have "job control" (the ability to stop a program, | |
66 run some other program, then continue the first one). */ | |
67 | |
68 #define NOMULTIPLEJOBS | |
69 | |
70 /* Emacs can read input using SIGIO and buffering characters itself, | |
71 or using CBREAK mode and making C-g cause SIGINT. | |
72 The choice is controlled by the variable interrupt_input. | |
73 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO) | |
74 | |
75 SIGIO can be used only on systems that implement it (4.2 and 4.3). | |
76 CBREAK mode has two disadvatages | |
77 1) At least in 4.2, it is impossible to handle the Meta key properly. | |
78 I hear that in system V this problem does not exist. | |
79 2) Control-G causes output to be discarded. | |
80 I do not know whether this can be fixed in system V. | |
81 | |
82 Another method of doing input is planned but not implemented. | |
83 It would have Emacs fork off a separate process | |
84 to read the input and send it to the true Emacs process | |
85 through a pipe. | |
86 */ | |
87 | |
88 /* #define INTERRUPT_INPUT */ | |
89 | |
90 /* Letter to use in finding device name of first pty, | |
91 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
92 | |
93 /* #define FIRST_PTY_LETTER 'a' */ | |
94 | |
95 /* | |
96 * Define HAVE_PTYS if the system supports pty devices. | |
97 */ | |
98 | |
99 /* #define HAVE_PTYS */ | |
100 | |
101 /* | |
102 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate | |
103 * The 4.2 opendir, etc., library functions. | |
104 */ | |
105 | |
106 /* #define NONSYSTEM_DIR_LIBRARY */ | |
107 | |
108 #define SYSV_SYSTEM_DIR | |
109 | |
110 /* Define this symbol if your system has the functions bcopy, etc. */ | |
111 | |
112 #define BSTRING | |
113 | |
8250
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
114 /* Define this is the compiler understands `volatile'. */ |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
115 #define HAVE_VOLATILE |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
116 |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
117 |
5503 | 118 /* subprocesses should be defined if you want to |
119 have code for asynchronous subprocesses | |
120 (as used in M-x compile and M-x shell). | |
121 This is generally OS dependent, and not supported | |
122 under most USG systems. */ | |
123 | |
124 #undef subprocesses | |
125 | |
126 /* If your system uses COFF (Common Object File Format) then define the | |
127 preprocessor symbol "COFF". */ | |
128 | |
129 #define COFF | |
130 | |
131 /* define MAIL_USE_FLOCK if the mailer uses flock | |
132 to interlock access to /usr/spool/mail/$USER. | |
133 The alternative is that a lock file named | |
134 /usr/spool/mail/$USER.lock. */ | |
135 | |
136 /* #define MAIL_USE_FLOCK */ | |
137 | |
138 /* Define CLASH_DETECTION if you want lock files to be written | |
139 so that Emacs can tell instantly when you try to modify | |
140 a file that someone else has modified in his Emacs. */ | |
141 | |
142 /* #define CLASH_DETECTION */ | |
143 | |
144 /* Here, on a separate page, add any special hacks needed | |
145 to make Emacs work on this system. For example, | |
146 you might define certain system call names that don't | |
147 exist on your system, or that do different things on | |
148 your system and must be used only through an encapsulation | |
149 (Which you should place, by convention, in sysdep.c). */ | |
150 | |
151 /* we use djgcc's malloc */ | |
152 /* #define SYSTEM_MALLOC */ | |
153 /* setjmp and longjmp can safely replace _setjmp and _longjmp, | |
154 but they will run slower. */ | |
155 | |
156 #define _setjmp setjmp | |
157 #define _longjmp longjmp | |
158 | |
159 #define NO_MODE_T | |
160 | |
161 /* New chdir () routine. */ | |
162 #ifdef chdir | |
163 #undef chdir | |
164 #endif | |
165 #define chdir sys_chdir | |
166 | |
167 #define LIBS_SYSTEM -lpc | |
168 | |
169 /* This somehow needs to be defined even though we use COFF. */ | |
170 #define TEXT_START -1 | |
171 | |
172 #define ORDINARY_LINK | |
173 | |
9572 | 174 /* command.com does not understand `...` so we define this. */ |
5503 | 175 #define LIB_GCC -Lgcc |
176 #define DONT_NEED_ENVIRON | |
177 #define SEPCHAR ';' | |
178 | |
179 #define NULL_DEVICE "nul" | |
180 #define EXEC_SUFFIXES ".exe:.com:.bat:" | |
181 | |
182 #define O_RDONLY 0x0001 | |
183 #define O_WRONLY 0x0002 | |
184 #define O_RDWR 0x0004 | |
185 #define O_CREAT 0x0100 | |
186 #define O_TRUNC 0x0200 | |
187 #define O_EXCL 0x0400 | |
188 #define O_APPEND 0x0800 | |
189 #define O_TEXT 0x4000 | |
190 #define O_BINARY 0x8000 | |
191 | |
192 #define HAVE_INVERSE_HYPERBOLIC | |
193 #define FLOAT_CHECK_DOMAIN | |
7362 | 194 #define NO_MATHERR |
5503 | 195 |
196 /* When $TERM is "internal" then this is substituted: */ | |
197 #define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\ | |
13177
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
198 :co#80:li#25:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:" |
5503 | 199 |
200 /* Define this to a function (Fdowncase, Fupcase) if your file system | |
201 likes that */ | |
202 #define FILE_SYSTEM_CASE Fdowncase | |
203 | |
10500
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
204 /* Define this to be the separator between devices and paths */ |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
205 #define DEVICE_SEP ':' |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
206 |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
207 /* We'll support either convention on MSDOG. */ |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
208 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\') |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
209 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_)) |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
210 |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
211 /* Call init_gettimeofday when TZ changes. */ |
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
212 #define LOCALTIME_CACHE |
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
213 #define tzset init_gettimeofday |
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
214 |
6382 | 215 /* bcopy under djgpp is quite safe */ |
216 #define GAP_USE_BCOPY | |
217 #define BCOPY_UPWARD_SAFE 1 | |
218 #define BCOPY_DOWNWARD_SAFE 1 | |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
219 |
8796 | 220 /* Mode line description of a buffer's type. */ |
221 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") | |
222 | |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
223 /* 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
|
224 #define HAVE_MOUSE |
9572 | 225 |
226 /* We have support for faces. */ | |
227 #define HAVE_FACES | |
228 | |
229 /* Define one of these for easier conditionals. */ | |
230 #ifdef HAVE_X_WINDOWS | |
231 /* We need a little extra space, see ../../lisp/loadup.el */ | |
232 #define SYSTEM_PURESIZE_EXTRA 15000 | |
233 #define HAVE_X11R5 | |
234 #define LIBX11_SYSTEM -lxext -lsys | |
235 #else | |
236 /* We need a little extra space, see ../../lisp/loadup.el */ | |
12345
35ee6a1b7dd6
(SYSTEM_PURESIZE_EXTRA): Increased to 68000.
Richard M. Stallman <rms@gnu.org>
parents:
12136
diff
changeset
|
237 #define SYSTEM_PURESIZE_EXTRA 68000 |
9572 | 238 #endif |