comparison src/s/template.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 41ff10fd062f
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
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 GNU Emacs.
7
8 GNU Emacs 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 2, or (at your option)
11 any later version.
12
13 GNU Emacs 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 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_1 */
36 /* #define BSD4_2 */
37 /* #define BSD4_3 */
38 /* #define BSD */
39 /* #define VMS */
40
41 /* SYSTEM_TYPE should indicate the kind of system you are using.
42 It sets the Lisp variable system-type. */
43
44 #define SYSTEM_TYPE "berkeley-unix"
45
46 /* Letter to use in finding device name of first pty,
47 if system supports pty's. 'a' means it is /dev/ptya0 */
48
49 #define FIRST_PTY_LETTER 'a'
50
51 /*
52 * Define HAVE_PTYS if the system supports pty devices.
53 */
54
55 #define HAVE_PTYS
56
57 /* If your system uses COFF (Common Object File Format) then define the
58 preprocessor symbol "COFF". */
59
60 /* #define COFF */
61
62 /* define MAIL_USE_FLOCK if the mailer uses flock
63 to interlock access to /usr/spool/mail/$USER.
64 The alternative is that a lock file named
65 /usr/spool/mail/$USER.lock. */
66
67 #define MAIL_USE_FLOCK
68
69 /* If the character used to separate elements of the executable path
70 is not ':', #define this to be the appropriate character constant. */
71 /* #define SEPCHAR ':' */
72
73 /* ============================================================ */
74
75 /* Here, add any special hacks needed
76 to make Emacs work on this system. For example,
77 you might define certain system call names that don't
78 exist on your system, or that do different things on
79 your system and must be used only through an encapsulation
80 (Which you should place, by convention, in sysdep.c). */
81
82 /* ============================================================ */
83
84 /* After adding support for a new system, modify the large case
85 statement in the `configure' script to recognize reasonable
86 configuration names, and add a description of the system to
87 `etc/MACHINES'.
88
89 If you've just fixed a problem in an existing configuration file,
90 you should also check `etc/MACHINES' to make sure its descriptions
91 of known problems in that configuration should be updated. */