Initial git import
[sxemacs] / src / s / template.h
1 /* Template for system description header files.
2    This file describes the parameters that system description files
3    should define or not.
4    Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
5
6 This file is part of SXEmacs
7
8 SXEmacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 SXEmacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
20
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 UNIPLUS */
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 "berkeley-unix"
43
44 /* Letter to use in finding device name of first pty,
45   if system supports pty's.  'a' means it is /dev/ptya0  */
46
47 #define FIRST_PTY_LETTER 'a'
48
49 /*
50  *      Define HAVE_PTYS if the system supports pty devices.
51  */
52
53 #define HAVE_PTYS
54
55 /* If your system uses COFF (Common Object File Format) then define the
56    preprocessor symbol "COFF". */
57
58 /* #define COFF */
59
60 /* define MAIL_USE_FLOCK if the mailer uses flock
61    to interlock access to /usr/spool/mail/$USER.
62    The alternative is that a lock file named
63    /usr/spool/mail/$USER.lock.  */
64
65 #define MAIL_USE_FLOCK
66
67 /* If the character used to separate elements of the executable path
68    is not ':', #define this to be the appropriate character constant.  */
69 /* #define SEPCHAR ':' */
70
71 /* ============================================================ */
72
73 /* Here, add any special hacks needed
74    to make Emacs work on this system.  For example,
75    you might define certain system call names that don't
76    exist on your system, or that do different things on
77    your system and must be used only through an encapsulation
78    (Which you should place, by convention, in sysdep.c).  */
79
80 /* ============================================================ */
81
82 /* After adding support for a new system, modify the large case
83    statement in the `configure' script to recognize reasonable
84    configuration names, and add a description of the system to
85    `etc/MACHINES'.
86
87    If you've just fixed a problem in an existing configuration file,
88    you should also check `etc/MACHINES' to make sure its descriptions
89    of known problems in that configuration should be updated.  */