comparison src/s/msdos.h @ 5503:003e84b91d21

Initial revision
author Richard M. Stallman <rms@gnu.org>
date Sat, 08 Jan 1994 09:22:50 +0000
parents
children 16e6eb4c5afa
comparison
equal deleted inserted replaced
5502:2b48fd9bc80e 5503:003e84b91d21
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
115 /* subprocesses should be defined if you want to
116 have code for asynchronous subprocesses
117 (as used in M-x compile and M-x shell).
118 This is generally OS dependent, and not supported
119 under most USG systems. */
120
121 #undef subprocesses
122
123 /* If your system uses COFF (Common Object File Format) then define the
124 preprocessor symbol "COFF". */
125
126 #define COFF
127
128 /* define MAIL_USE_FLOCK if the mailer uses flock
129 to interlock access to /usr/spool/mail/$USER.
130 The alternative is that a lock file named
131 /usr/spool/mail/$USER.lock. */
132
133 /* #define MAIL_USE_FLOCK */
134
135 /* Define CLASH_DETECTION if you want lock files to be written
136 so that Emacs can tell instantly when you try to modify
137 a file that someone else has modified in his Emacs. */
138
139 /* #define CLASH_DETECTION */
140
141 /* Here, on a separate page, add any special hacks needed
142 to make Emacs work on this system. For example,
143 you might define certain system call names that don't
144 exist on your system, or that do different things on
145 your system and must be used only through an encapsulation
146 (Which you should place, by convention, in sysdep.c). */
147
148 /* Some compilers tend to put everything declared static
149 into the initialized data area, which becomes pure after dumping Emacs.
150 On these systems, you must #define static as nothing to foil this.
151 Note that emacs carefully avoids static vars inside functions. */
152
153 /* #define static */
154
155 /* we use djgcc's malloc */
156 /* #define SYSTEM_MALLOC */
157 /* setjmp and longjmp can safely replace _setjmp and _longjmp,
158 but they will run slower. */
159
160 #define _setjmp setjmp
161 #define _longjmp longjmp
162
163 #define NO_MODE_T
164
165 /* we can use dj's getpagesize() */
166 #define HAVE_GETPAGESIZE
167
168 /* New chdir () routine. */
169 #ifdef chdir
170 #undef chdir
171 #endif
172 #define chdir sys_chdir
173
174 #define LIBS_SYSTEM -lpc
175
176 /* This somehow needs to be defined even though we use COFF. */
177 #define TEXT_START -1
178
179 #define ORDINARY_LINK
180
181 /* command.com does not under stand `...` so we define this. */
182 #define LIB_GCC -Lgcc
183 #define DONT_NEED_ENVIRON
184 #define SEPCHAR ';'
185
186 #define NULL_DEVICE "nul"
187 #define EXEC_SUFFIXES ".exe:.com:.bat:"
188
189 #define O_RDONLY 0x0001
190 #define O_WRONLY 0x0002
191 #define O_RDWR 0x0004
192 #define O_CREAT 0x0100
193 #define O_TRUNC 0x0200
194 #define O_EXCL 0x0400
195 #define O_APPEND 0x0800
196 #define O_TEXT 0x4000
197 #define O_BINARY 0x8000
198
199 #define HAVE_INVERSE_HYPERBOLIC
200 #define FLOAT_CHECK_DOMAIN
201
202 /* When $TERM is "internal" then this is substituted: */
203 #define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\
204 :co#80:li#25:km:\
205 :cm=\E@%.%.:\
206 :do=^J:le=^H:up=\EU:ri=\ER:\
207 :ti=\EA\027:te=\EA\007\EE:\
208 :so=\EA\077:se=\EA\027:\
209 :ms:mb=\EX\200:md=\EX\010:mk=\EA\161:me=\EA\027:\
210 :cl=\EC:ce=\EE:\
211 :vb=\EB\140:bl=:"
212 #define fflush internal_flush
213
214 /* Define this to a function (Fdowncase, Fupcase) if your file system
215 likes that */
216 #define FILE_SYSTEM_CASE Fdowncase
217
218 /* MSDOS doesn't really have this function. */
219 #define getppid() 1