613
|
1 /* Definitions file for XEmacs running on AT&T's System V.0
|
428
|
2 Copyright (C) 1985, 1986 Free Software Foundation, Inc.
|
|
3
|
613
|
4 This file is part of XEmacs.
|
428
|
5
|
613
|
6 XEmacs is free software; you can redistribute it and/or modify
|
428
|
7 it under the terms of the GNU General Public License as published by
|
|
8 the Free Software Foundation; either version 2, or (at your option)
|
|
9 any later version.
|
|
10
|
613
|
11 XEmacs is distributed in the hope that it will be useful,
|
428
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 GNU General Public License for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 19.31. */
|
|
22
|
|
23 /*
|
|
24 * Define symbols to identify the version of Unix this is.
|
|
25 * Define all the symbols that apply correctly.
|
|
26 */
|
|
27
|
|
28 #define USG /* System III, System V, etc */
|
|
29
|
|
30 #define USG5
|
|
31 #define USG5_0
|
|
32
|
|
33 /* SYSTEM_TYPE should indicate the kind of system you are using.
|
|
34 It sets the Lisp variable system-type. */
|
|
35
|
|
36 #define SYSTEM_TYPE "usg-unix-v"
|
|
37
|
|
38 /* Letter to use in finding device name of first pty,
|
|
39 if system supports pty's. 'p' means it is /dev/ptyp0 */
|
|
40
|
|
41 #define FIRST_PTY_LETTER 'p'
|
|
42
|
|
43 /* If your system uses COFF (Common Object File Format) then define the
|
|
44 preprocessor symbol "COFF". */
|
|
45
|
|
46 #define COFF
|
|
47
|
|
48 /* define MAIL_USE_FLOCK if the mailer uses flock
|
|
49 to interlock access to /usr/spool/mail/$USER.
|
|
50 The alternative is that a lock file named
|
|
51 /usr/spool/mail/$USER.lock. */
|
|
52
|
|
53 /* #define MAIL_USE_FLOCK */
|
|
54
|
|
55 /* The file containing the kernel's symbol table is called /unix. */
|
|
56
|
|
57 #define KERNEL_FILE "/unix"
|
|
58
|
|
59 /* The symbol in the kernel where the load average is found
|
|
60 is named avenrun. */
|
|
61
|
|
62 #define LDAV_SYMBOL "avenrun"
|
|
63
|
|
64 /* Special hacks needed to make Emacs run on this system. */
|
|
65
|
|
66 /* On USG systems the system calls are interruptible by signals
|
|
67 that the user program has elected to catch. Thus the system call
|
|
68 must be retried in these cases. To handle this without massive
|
|
69 changes in the source code, we remap the standard system call names
|
|
70 to names for our own functions in sysdep.c that do the system call
|
|
71 with retries. */
|
|
72
|
|
73 #define INTERRUPTIBLE_OPEN
|
|
74 #define INTERRUPTIBLE_IO
|
|
75
|
|
76 /* USG systems tend to put everything declared static
|
|
77 into the initialized data area, which becomes pure after dumping Emacs.
|
|
78 Foil this by defining NO_REMAP, which makes the purespace not pure.
|
|
79 (Formerly this was avoided by doing '#define static' but this just
|
|
80 fails with inline functions.) */
|
|
81
|
|
82 #ifndef DONT_DEFINE_NO_REMAP
|
|
83 #define NO_REMAP
|
|
84 #endif
|
|
85
|
|
86 /* Compiler bug bites on many systems when default ADDR_CORRECT is used. */
|
|
87
|
|
88 #define ADDR_CORRECT(x) (x)
|
|
89
|
|
90 /* Prevent -lg from being used for debugging. Not implemented? */
|
|
91
|
|
92 #define LIBS_DEBUG
|