XEmacs 21.2-b1
[chise/xemacs-chise.git.1] / src / s / unipl5-0.h
1 /* Definitions file for GNU Emacs running on UniSoft's UniPlus 5.0
2    Support for this system is not finished; don't expect this to work.
3    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
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
12 GNU Emacs is distributed in the hope that it will be useful,
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 /*
46  *      Define HAVE_PTYS if the system supports pty devices.
47  */
48
49 /* #define HAVE_PTYS */
50
51 #define NO_SUBPROCESSES
52
53 /* If your system uses COFF (Common Object File Format) then define the
54    preprocessor symbol "COFF". */
55
56 /* #define COFF */
57
58 /* define MAIL_USE_FLOCK if the mailer uses flock
59    to interlock access to /usr/spool/mail/$USER.
60    The alternative is that a lock file named
61    /usr/spool/mail/$USER.lock.  */
62
63 /* #define MAIL_USE_FLOCK */
64
65 /* The file containing the kernel's symbol table is called /unix.  */
66
67 #define KERNEL_FILE "/unix"
68
69 /* The symbol in the kernel where the load average is found
70    is named avenrun.  */
71
72 #define LDAV_SYMBOL "avenrun"
73 \f
74 /* Special hacks needed to make Emacs run on this system.  */
75
76 /* On USG systems the system calls are interruptible by signals
77  that the user program has elected to catch.  Thus the system call
78  must be retried in these cases.  To handle this without massive
79  changes in the source code, we remap the standard system call names
80  to names for our own functions in sysdep.c that do the system call
81  with retries. */
82
83 #define INTERRUPTIBLE_OPEN
84 #define INTERRUPTIBLE_IO
85
86 /* Compiler bug bites when default ADDR_CORRECT is used.  */
87
88 #define ADDR_CORRECT(x) (x)
89
90 /* Special library needed for linking for Uniplus */
91
92 #define LIBS_SYSTEM "-lnet"
93
94 /* A system-specific loader switch is needed.  */
95
96 #define LD_SWITCH_SYSTEM "-N -L/lib/libg /usr/lib/unshared.ld"