Mercurial > emacs
annotate src/s/msdos.h @ 105683:f08ab3de7d1e
* fns.c: Add #endif accidentally removed in previous change.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 20 Oct 2009 07:59:57 +0000 |
parents | e038c1a8307c |
children | 16436901d3db |
rev | line source |
---|---|
5503 | 1 /* System description file for MS-DOS |
2 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
3 Copyright (C) 1993, 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, |
100951 | 4 2007, 2008, 2009 Free Software Foundation, Inc. |
5503 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
5503 | 9 it under the terms of the GNU General Public License as published by |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
11 (at your option) any later version. |
5503 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
5503 | 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 #ifndef MSDOS | |
30 #define MSDOS | |
31 #endif | |
9798 | 32 |
13177
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
33 #ifdef __GO32__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
34 #ifndef __DJGPP__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
35 #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
|
36 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
37 #else |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
38 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
|
39 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
40 |
9798 | 41 #define DOS_NT /* MSDOS or WINDOWSNT */ |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15220
diff
changeset
|
42 #undef BSD_SYSTEM |
5503 | 43 |
44 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
45 It sets the Lisp variable system-type. */ | |
46 | |
47 #define SYSTEM_TYPE "ms-dos" | |
48 | |
17453
42bddf2eebad
(SYMS_SYSTEM): Add `syms_of_win16select'.
Eli Zaretskii <eliz@gnu.org>
parents:
16220
diff
changeset
|
49 #define SYMS_SYSTEM syms_of_dosfns();syms_of_msdos();syms_of_win16select() |
5503 | 50 |
51 /* NOMULTIPLEJOBS should be defined if your system's shell | |
52 does not have "job control" (the ability to stop a program, | |
53 run some other program, then continue the first one). */ | |
54 | |
55 #define NOMULTIPLEJOBS | |
56 | |
57 #define SYSV_SYSTEM_DIR | |
58 | |
59 /* Define this symbol if your system has the functions bcopy, etc. */ | |
60 | |
61 #define BSTRING | |
62 | |
8250
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
63 /* Define this is the compiler understands `volatile'. */ |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
64 #define HAVE_VOLATILE |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
65 |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
66 |
5503 | 67 /* subprocesses should be defined if you want to |
68 have code for asynchronous subprocesses | |
69 (as used in M-x compile and M-x shell). | |
96923
d89afa2b4c2f
* config.in: Regenerate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96721
diff
changeset
|
70 This is the only system that needs this. */ |
5503 | 71 |
72 #undef subprocesses | |
73 | |
74 /* If your system uses COFF (Common Object File Format) then define the | |
75 preprocessor symbol "COFF". */ | |
76 | |
77 #define COFF | |
78 | |
79 /* Here, on a separate page, add any special hacks needed | |
80 to make Emacs work on this system. For example, | |
81 you might define certain system call names that don't | |
82 exist on your system, or that do different things on | |
83 your system and must be used only through an encapsulation | |
84 (Which you should place, by convention, in sysdep.c). */ | |
85 | |
15172
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
86 /* Avoid incompatibilities between gmalloc.c and system header files |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
87 in how to declare valloc. */ |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
88 #define GMALLOC_INHIBIT_VALLOC |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
89 |
97654 | 90 /* This overrides the default value on editfns.c, since DJGPP |
91 does not have pw->pw_gecos. */ | |
92 #define USER_FULL_NAME (getenv ("NAME")) | |
93 | |
5503 | 94 /* setjmp and longjmp can safely replace _setjmp and _longjmp, |
95 but they will run slower. */ | |
96 | |
97 #define _setjmp setjmp | |
98 #define _longjmp longjmp | |
99 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
100 #if __DJGPP__ < 2 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
101 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
102 /* New chdir () routine. |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
103 DJGPP v2.0 and later doesn't need it because its chdir() does |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
104 set the drive itself. */ |
5503 | 105 #ifdef chdir |
106 #undef chdir | |
107 #endif | |
108 #define chdir sys_chdir | |
109 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
110 #define LIBS_SYSTEM -lpc /* isn't required in DJGPP v2.0, either */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
111 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
112 #endif /* __DJGPP__ < 2 */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
113 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
114 #if __DJGPP__ > 1 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
115 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
116 #define DATA_START (&etext + 1) |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
117 #define TEXT_START &start |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
118 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
119 #define _NAIVE_DOS_REGS |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
120 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
121 #else /* not __DJGPP__ > 1 */ |
5503 | 122 |
123 /* This somehow needs to be defined even though we use COFF. */ | |
124 #define TEXT_START -1 | |
125 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
126 #endif /* not __DJGPP__ > 1 */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
127 |
5503 | 128 #define ORDINARY_LINK |
129 | |
9572 | 130 /* command.com does not understand `...` so we define this. */ |
5503 | 131 #define LIB_GCC -Lgcc |
132 #define SEPCHAR ';' | |
133 | |
134 #define NULL_DEVICE "nul" | |
135 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
136 #if __DJGPP__ < 2 |
5503 | 137 #define O_RDONLY 0x0001 |
138 #define O_WRONLY 0x0002 | |
139 #define O_RDWR 0x0004 | |
140 #define O_CREAT 0x0100 | |
141 #define O_TRUNC 0x0200 | |
142 #define O_EXCL 0x0400 | |
143 #define O_APPEND 0x0800 | |
144 #define O_TEXT 0x4000 | |
145 #define O_BINARY 0x8000 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
146 #define NO_MATHERR |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
147 #endif |
5503 | 148 |
149 #define HAVE_INVERSE_HYPERBOLIC | |
150 #define FLOAT_CHECK_DOMAIN | |
151 | |
152 /* When $TERM is "internal" then this is substituted: */ | |
96363
f9d35151b907
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96303
diff
changeset
|
153 #define INTERNAL_TERMINAL "pc|bios|IBM PC with color display:\ |
26730
d19a69fd704a
(INTERNAL_TERMINAL): Add entries for color support.
Eli Zaretskii <eliz@gnu.org>
parents:
17453
diff
changeset
|
154 :co#80:li#25:Co#16:pa#256:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:\ |
27638
4b7038d296bb
Add capabilities se, so, us, ue, md, mh, mb, mr, and me to the fake
Eli Zaretskii <eliz@gnu.org>
parents:
27593
diff
changeset
|
155 :se=</SO>:so=<SO>:us=<UL>:ue=</UL>:md=<BD>:mh=<DIM>:mb=<BL>:mr=<RV>:me=<NV>:\ |
26730
d19a69fd704a
(INTERNAL_TERMINAL): Add entries for color support.
Eli Zaretskii <eliz@gnu.org>
parents:
17453
diff
changeset
|
156 :AB=<BG %d>:AF=<FG %d>:op=<DefC>:" |
5503 | 157 |
158 /* Define this to a function (Fdowncase, Fupcase) if your file system | |
159 likes that */ | |
15220
069fc3f2c2b4
(FILE_SYSTEM_CASE): Call Fmsdos_downcase_filename instead of Fdowncase.
Richard M. Stallman <rms@gnu.org>
parents:
15172
diff
changeset
|
160 #define FILE_SYSTEM_CASE Fmsdos_downcase_filename |
5503 | 161 |
10500
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
162 /* 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
|
163 #define DEVICE_SEP ':' |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
164 |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
165 /* 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
|
166 #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
|
167 #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
|
168 |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
169 /* Call init_gettimeofday when TZ changes. */ |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
170 #if __DJGPP__ < 2 |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
171 #define LOCALTIME_CACHE |
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
172 #define tzset init_gettimeofday |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
173 #endif |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
174 |
6382 | 175 /* bcopy under djgpp is quite safe */ |
176 #define GAP_USE_BCOPY | |
177 #define BCOPY_UPWARD_SAFE 1 | |
178 #define BCOPY_DOWNWARD_SAFE 1 | |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
179 |
8796 | 180 /* Mode line description of a buffer's type. */ |
181 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") | |
182 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
183 /* Do we have POSIX signals? */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
184 #if __DJGPP__ > 1 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
185 #define POSIX_SIGNALS |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
186 #endif |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
187 |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
188 /* 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
|
189 #define HAVE_MOUSE |
9572 | 190 |
13849 | 191 /* We canuse mouse menus. */ |
192 #define HAVE_MENUS | |
193 | |
9572 | 194 /* Define one of these for easier conditionals. */ |
195 #ifdef HAVE_X_WINDOWS | |
98598
96c9bd37843f
(SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
Eli Zaretskii <eliz@gnu.org>
parents:
97654
diff
changeset
|
196 /* We need a little extra space, see ../../lisp/loadup.el. */ |
9572 | 197 #define SYSTEM_PURESIZE_EXTRA 15000 |
198 #define LIBX11_SYSTEM -lxext -lsys | |
199 #else | |
98598
96c9bd37843f
(SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
Eli Zaretskii <eliz@gnu.org>
parents:
97654
diff
changeset
|
200 /* We may need a little extra space, see ../../lisp/loadup.el. As of |
96c9bd37843f
(SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
Eli Zaretskii <eliz@gnu.org>
parents:
97654
diff
changeset
|
201 20081010, 1193600 bytes are used at dump time, which is even less |
96c9bd37843f
(SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
Eli Zaretskii <eliz@gnu.org>
parents:
97654
diff
changeset
|
202 than BASE_PURESIZE. So the extra below is just paranoia. */ |
96c9bd37843f
(SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
Eli Zaretskii <eliz@gnu.org>
parents:
97654
diff
changeset
|
203 #define SYSTEM_PURESIZE_EXTRA 10000 |
9572 | 204 #endif |
28364 | 205 |
35553 | 206 /* Tell the garbage collector that setjmp is known to save all |
28364 | 207 registers relevant for conservative garbage collection in the |
208 jmp_buf. */ | |
209 | |
210 #define GC_SETJMP_WORKS 1 | |
35451
a600f3477e8f
(GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
Eli Zaretskii <eliz@gnu.org>
parents:
28364
diff
changeset
|
211 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS |
52401 | 212 |
213 /* arch-tag: d184f860-815d-4ff4-8187-d05c0f3c37d0 | |
214 (do not change this comment) */ |