*** empty log message ***
[bpt/emacs.git] / src / s / msdos.h
CommitLineData
1b94449f
RS
1/* System description file for MS-DOS
2
3 Copyright (C) 1993 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the 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
1b94449f
RS
83/*
84 * Define HAVE_PTYS if the system supports pty devices.
85 */
86
87/* #define HAVE_PTYS */
88
89/*
90 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate
91 * The 4.2 opendir, etc., library functions.
92 */
93
94/* #define NONSYSTEM_DIR_LIBRARY */
95
96#define SYSV_SYSTEM_DIR
97
98/* Define this symbol if your system has the functions bcopy, etc. */
99
100#define BSTRING
101
17b9d003
RS
102/* Define this is the compiler understands `volatile'. */
103#define HAVE_VOLATILE
104
105
1b94449f
RS
106/* subprocesses should be defined if you want to
107 have code for asynchronous subprocesses
108 (as used in M-x compile and M-x shell).
109 This is generally OS dependent, and not supported
110 under most USG systems. */
111
112#undef subprocesses
113
114/* If your system uses COFF (Common Object File Format) then define the
115 preprocessor symbol "COFF". */
116
117#define COFF
118
119/* define MAIL_USE_FLOCK if the mailer uses flock
120 to interlock access to /usr/spool/mail/$USER.
121 The alternative is that a lock file named
122 /usr/spool/mail/$USER.lock. */
123
124/* #define MAIL_USE_FLOCK */
125
126/* Define CLASH_DETECTION if you want lock files to be written
127 so that Emacs can tell instantly when you try to modify
128 a file that someone else has modified in his Emacs. */
129
130/* #define CLASH_DETECTION */
131
132/* Here, on a separate page, add any special hacks needed
133 to make Emacs work on this system. For example,
134 you might define certain system call names that don't
135 exist on your system, or that do different things on
136 your system and must be used only through an encapsulation
137 (Which you should place, by convention, in sysdep.c). */
138\f
139/* Some compilers tend to put everything declared static
140 into the initialized data area, which becomes pure after dumping Emacs.
141 On these systems, you must #define static as nothing to foil this.
142 Note that emacs carefully avoids static vars inside functions. */
143
144/* #define static */
145
146/* we use djgcc's malloc */
147/* #define SYSTEM_MALLOC */
148/* setjmp and longjmp can safely replace _setjmp and _longjmp,
149 but they will run slower. */
150
151#define _setjmp setjmp
152#define _longjmp longjmp
153
154#define NO_MODE_T
155
156/* we can use dj's getpagesize() */
157#define HAVE_GETPAGESIZE
158
159/* New chdir () routine. */
160#ifdef chdir
161#undef chdir
162#endif
163#define chdir sys_chdir
164
165#define LIBS_SYSTEM -lpc
166
167/* This somehow needs to be defined even though we use COFF. */
168#define TEXT_START -1
169
170#define ORDINARY_LINK
171
87485d6f 172/* command.com does not understand `...` so we define this. */
1b94449f
RS
173#define LIB_GCC -Lgcc
174#define DONT_NEED_ENVIRON
175#define SEPCHAR ';'
176
177#define NULL_DEVICE "nul"
178#define EXEC_SUFFIXES ".exe:.com:.bat:"
179
180#define O_RDONLY 0x0001
181#define O_WRONLY 0x0002
182#define O_RDWR 0x0004
183#define O_CREAT 0x0100
184#define O_TRUNC 0x0200
185#define O_EXCL 0x0400
186#define O_APPEND 0x0800
187#define O_TEXT 0x4000
188#define O_BINARY 0x8000
189
190#define HAVE_INVERSE_HYPERBOLIC
191#define FLOAT_CHECK_DOMAIN
ca31c483 192#define NO_MATHERR
1b94449f
RS
193
194/* When $TERM is "internal" then this is substituted: */
195#define INTERNAL_TERMINAL "pc|bios|IBM PC with colour display:\
196:co#80:li#25:km:\
197:cm=\E@%.%.:\
198:do=^J:le=^H:up=\EU:ri=\ER:\
199:ti=\EA\027:te=\EA\007\EE:\
200:so=\EA\077:se=\EA\027:\
201:ms:mb=\EX\200:md=\EX\010:mk=\EA\161:me=\EA\027:\
202:cl=\EC:ce=\EE:\
a7d6cde6 203:vb=\EB\140:bl=\007:"
1b94449f
RS
204#define fflush internal_flush
205
206/* Define this to a function (Fdowncase, Fupcase) if your file system
207 likes that */
208#define FILE_SYSTEM_CASE Fdowncase
209
a7d40caa
KH
210/* bcopy under djgpp is quite safe */
211#define GAP_USE_BCOPY
212#define BCOPY_UPWARD_SAFE 1
213#define BCOPY_DOWNWARD_SAFE 1
eb246adb 214
b77c5660
KH
215/* Mode line description of a buffer's type. */
216#define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B")
217
eb246adb
RS
218/* We have (the code to control) a mouse. */
219#define HAVE_MOUSE
87485d6f
MW
220
221/* We have support for faces. */
222#define HAVE_FACES
223
224/* Define one of these for easier conditionals. */
225#ifdef HAVE_X_WINDOWS
226/* We need a little extra space, see ../../lisp/loadup.el */
227#define SYSTEM_PURESIZE_EXTRA 15000
228#define HAVE_X11R5
229#define LIBX11_SYSTEM -lxext -lsys
230#else
231/* We need a little extra space, see ../../lisp/loadup.el */
232#define SYSTEM_PURESIZE_EXTRA 30000
233#endif