613
|
1 /* Definitions file for XEmacs running on UniSoft's UniPlus 5.0
|
428
|
2 Support for this system is not finished; don't expect this to work.
|
|
3 Copyright (C) 1985, 1986 Free Software Foundation, Inc.
|
|
4
|
613
|
5 This file is part of XEmacs.
|
428
|
6
|
613
|
7 XEmacs is free software; you can redistribute it and/or modify
|
428
|
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
|
613
|
12 XEmacs is distributed in the hope that it will be useful,
|
428
|
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 XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: FSF 19.31. */
|
|
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 USG /* System III, System V, etc */
|
|
30
|
|
31 #define USG5
|
|
32
|
|
33 #define UNIPLUS
|
|
34
|
|
35 /* SYSTEM_TYPE should indicate the kind of system you are using.
|
|
36 It sets the Lisp variable system-type. */
|
|
37
|
|
38 #define SYSTEM_TYPE "unisoft-unix"
|
|
39
|
|
40 /* Letter to use in finding device name of first pty,
|
|
41 if system supports pty's. 'a' means it is /dev/ptya0 */
|
|
42
|
|
43 /* #define FIRST_PTY_LETTER 'a' */
|
|
44
|
|
45 #define NO_SUBPROCESSES
|
|
46
|
|
47 /* If your system uses COFF (Common Object File Format) then define the
|
|
48 preprocessor symbol "COFF". */
|
|
49
|
|
50 /* #define COFF */
|
|
51
|
|
52 /* define MAIL_USE_FLOCK if the mailer uses flock
|
|
53 to interlock access to /usr/spool/mail/$USER.
|
|
54 The alternative is that a lock file named
|
|
55 /usr/spool/mail/$USER.lock. */
|
|
56
|
|
57 /* #define MAIL_USE_FLOCK */
|
|
58
|
|
59 /* The file containing the kernel's symbol table is called /unix. */
|
|
60
|
|
61 #define KERNEL_FILE "/unix"
|
|
62
|
|
63 /* The symbol in the kernel where the load average is found
|
|
64 is named avenrun. */
|
|
65
|
|
66 #define LDAV_SYMBOL "avenrun"
|
|
67
|
|
68 /* Special hacks needed to make Emacs run on this system. */
|
|
69
|
|
70 /* On USG systems the system calls are interruptible by signals
|
|
71 that the user program has elected to catch. Thus the system call
|
|
72 must be retried in these cases. To handle this without massive
|
|
73 changes in the source code, we remap the standard system call names
|
|
74 to names for our own functions in sysdep.c that do the system call
|
|
75 with retries. */
|
|
76
|
|
77 #define INTERRUPTIBLE_OPEN
|
|
78 #define INTERRUPTIBLE_IO
|
|
79
|
|
80 /* Compiler bug bites when default ADDR_CORRECT is used. */
|
|
81
|
|
82 #define ADDR_CORRECT(x) (x)
|
|
83
|
|
84 /* Special library needed for linking for Uniplus */
|
|
85
|
|
86 #define LIBS_SYSTEM "-lnet"
|
|
87
|
|
88 /* A system-specific loader switch is needed. */
|
|
89
|
|
90 #define LD_SWITCH_SYSTEM "-N -L/lib/libg /usr/lib/unshared.ld"
|