Enclosed the media stop status assignment inside the
[sxemacs] / src / s / bsd4-1.h
1 /* Definitions file for GNU Emacs running on bsd 4.1.
2    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
3
4 This file is part of SXEmacs
5
6 SXEmacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 SXEmacs is distributed in the hope that it will be useful,
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 this program.  If not, see <http://www.gnu.org/licenses/>. */
18
19
20 /* Synched up with: FSF 19.31. */
21
22 /*
23  *      Define symbols to identify the version of Unix this is.
24  *      Define all the symbols that apply correctly.
25  */
26
27 #define BSD4_1
28
29 #define BSD
30
31 /* SYSTEM_TYPE should indicate the kind of system you are using.
32  It sets the Lisp variable system-type.  */
33
34 #define SYSTEM_TYPE "berkeley-unix"
35
36 /* First pty name is /dev/ptyp0.  */
37
38 #define FIRST_PTY_LETTER 'p'
39
40 /*
41  *      Define HAVE_PTYS if the system supports pty devices.
42  */
43
44 /* #define HAVE_PTYS */
45
46 /* If your system uses COFF (Common Object File Format) then define the
47    preprocessor symbol "COFF". */
48
49 /* #define COFF */
50
51 /* define MAIL_USE_FLOCK if the mailer uses flock
52    to interlock access to /usr/spool/mail/$USER.
53    The alternative is that a lock file named
54    /usr/spool/mail/$USER.lock.  */
55
56 /* #define MAIL_USE_FLOCK */
57
58 /* The file containing the kernel's symbol table is called /vmunix.  */
59
60 #define KERNEL_FILE "/vmunix"
61
62 /* The symbol in the kernel where the load average is found
63    is named _avenrun.  */
64
65 #define LDAV_SYMBOL "_avenrun"
66
67 /* Special hacks needed to make Emacs run on this system.  */
68
69 #define lstat stat
70
71 /* sys_open handles the necessary 4.2 features for open.  */
72
73 #define ENCAPSULATE_OPEN
74
75 /* Names of flags for open.  */
76 #define O_RDONLY 0
77 #define O_WRONLY 1
78 #define O_RDWR 2
79 #define O_EXCL  2000
80 #define O_CREAT 1000
81
82 /* Special library needed for linking for 4.1.  */
83 #define LIBS_SYSTEM "-ljobs"