613
|
1 /* Definitions file for XEmacs running SCO Xenix 386 Release 2.2
|
428
|
2 Copyright (C) 1988 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 /*
|
|
22 * Define symbols to identify the version of Unix this is.
|
|
23 * Define all the symbols that apply correctly.
|
|
24 */
|
|
25
|
|
26 /* Synched up with: FSF 19.31. */
|
|
27
|
|
28 /* #define UNIPLUS */
|
|
29 #define XENIX
|
|
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
|
|
39 /* SYSTEM_TYPE should indicate the kind of system you are using.
|
|
40 It sets the Lisp variable system-type. */
|
|
41
|
|
42 #define SYSTEM_TYPE "xenix"
|
|
43
|
|
44 /* If your system uses COFF (Common Object File Format) then define the
|
|
45 preprocessor symbol "COFF". */
|
|
46
|
|
47 /* #define COFF */
|
|
48
|
|
49 /* Xenix requires completely different unexec code
|
|
50 which lives in a separate file. Specify the file name. */
|
|
51
|
|
52 #define UNEXEC "unexenix.o"
|
|
53
|
|
54 /* define MAIL_USE_FLOCK if the mailer uses flock
|
|
55 to interlock access to /usr/spool/mail/$USER.
|
|
56 The alternative is that a lock file named
|
|
57 /usr/spool/mail/$USER.lock. */
|
|
58
|
|
59 #define MAIL_USE_FLOCK
|
|
60
|
|
61 /* Compensate for one incompatibility between Xenix and V.0. */
|
|
62 #define n_zeroes n_name[0]
|
|
63
|
|
64 /* The file containing the kernel's symbol table is called /xenix. */
|
|
65
|
|
66 #define KERNEL_FILE "/xenix"
|
|
67
|
|
68 /* The symbol in the kernel where the load average is found
|
|
69 is named avenrun. */
|
|
70
|
|
71 #define LDAV_SYMBOL "_avenrun"
|
|
72
|
|
73 /* Special hacks needed to make Emacs run on this system. */
|
|
74
|
|
75 /* On USG systems the system calls are interruptible by signals
|
|
76 that the user program has elected to catch. Thus the system call
|
|
77 must be retried in these cases. To handle this without massive
|
|
78 changes in the source code, we remap the standard system call names
|
|
79 to names for our own functions in sysdep.c that do the system call
|
|
80 with retries. */
|
|
81
|
|
82 #define INTERRUPTIBLE_OPEN
|
|
83 #define INTERRUPTIBLE_IO
|
|
84
|
|
85 /* Compiler bug bites on many systems when default ADDR_CORRECT is used. */
|
|
86
|
|
87 #define ADDR_CORRECT(x) (x)
|
|
88
|
|
89 /* Prevent -lg from being used for debugging. Not implemented? */
|
|
90
|
|
91 #define LIBS_DEBUG
|
|
92
|
|
93 /* Switches for linking temacs. */
|
|
94
|
|
95 #define LD_SWITCH_SYSTEM "-i"
|
|
96
|
|
97 /* Use terminfo instead of termcap. */
|
|
98
|
|
99 /* Tell Emacs to use Terminfo. */
|
|
100
|
|
101 #define TERMINFO
|
|
102
|
|
103 /* Tell Xenix curses to BE Terminfo. */
|
|
104 #define M_TERMINFO
|
|
105
|
|
106 /* Control program name for etc/fakemail to run. */
|
|
107
|
|
108 #ifdef SMAIL
|
|
109 #define MAIL_PROGRAM_NAME "/usr/bin/smail -q0"
|
|
110 #else
|
|
111 #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
|
|
112 #endif
|
|
113
|
|
114 /* Some variants have TIOCGETC, but the structures to go with it
|
|
115 are not declared. */
|
|
116
|
|
117 #define BROKEN_TIOCGETC
|