428
|
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
|
613
|
6 This file is part of XEmacs.
|
428
|
7
|
613
|
8 XEmacs is free software; you can redistribute it and/or modify
|
428
|
9 it under the terms of the GNU General Public License as published by
|
|
10 the Free Software Foundation; either version 2, or (at your option)
|
|
11 any later version.
|
|
12
|
613
|
13 XEmacs is distributed in the hope that it will be useful,
|
428
|
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 XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: FSF 19.31. */
|
|
24
|
|
25 /*
|
|
26 * Define symbols to identify the version of Unix this is.
|
|
27 * Define all the symbols that apply correctly.
|
|
28 */
|
|
29
|
|
30 /* #define UNIPLUS */
|
|
31 /* #define USG5 */
|
|
32 /* #define USG */
|
|
33 /* #define HPUX */
|
|
34 /* #define UMAX */
|
|
35 /* #define BSD4_3 */
|
|
36 /* #define BSD */
|
|
37
|
|
38 /* SYSTEM_TYPE should indicate the kind of system you are using.
|
|
39 It sets the Lisp variable system-type. */
|
|
40
|
|
41 #define SYSTEM_TYPE "berkeley-unix"
|
|
42
|
|
43 /* Letter to use in finding device name of first pty,
|
|
44 if system supports pty's. 'a' means it is /dev/ptya0 */
|
|
45
|
535
|
46 #define FIRST_PTY_LETTER 'p'
|
428
|
47
|
|
48 /* If your system uses COFF (Common Object File Format) then define the
|
|
49 preprocessor symbol "COFF". */
|
|
50
|
|
51 /* #define COFF */
|
|
52
|
|
53 /* define MAIL_USE_FLOCK if the mailer uses flock
|
|
54 to interlock access to /usr/spool/mail/$USER.
|
|
55 The alternative is that a lock file named
|
|
56 /usr/spool/mail/$USER.lock. */
|
|
57
|
|
58 #define MAIL_USE_FLOCK
|
|
59
|
|
60 /* If the character used to separate elements of the executable path
|
|
61 is not ':', #define this to be the appropriate character constant. */
|
|
62 /* #define SEPCHAR ':' */
|
|
63
|
|
64 /* ============================================================ */
|
|
65
|
|
66 /* Here, add any special hacks needed
|
|
67 to make Emacs work on this system. For example,
|
|
68 you might define certain system call names that don't
|
|
69 exist on your system, or that do different things on
|
|
70 your system and must be used only through an encapsulation
|
|
71 (Which you should place, by convention, in sysdep.c). */
|
|
72
|
|
73 /* ============================================================ */
|
|
74
|
|
75 /* After adding support for a new system, modify the large case
|
|
76 statement in the `configure' script to recognize reasonable
|
|
77 configuration names, and add a description of the system to
|
|
78 `etc/MACHINES'.
|
|
79
|
|
80 If you've just fixed a problem in an existing configuration file,
|
|
81 you should also check `etc/MACHINES' to make sure its descriptions
|
|
82 of known problems in that configuration should be updated. */
|