Mercurial > hg > xemacs-beta
annotate src/s/template.h @ 5420:b9167d522a9a
Rebase with 21.5 trunk.
| author | Mats Lidell <matsl@xemacs.org> |
|---|---|
| date | Thu, 28 Oct 2010 23:53:24 +0200 |
| parents | 308d34e9f07d |
| children |
| rev | line source |
|---|---|
| 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 |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
8 XEmacs is free software: you can redistribute it and/or modify it |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
9 under the terms of the GNU General Public License as published by the |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
10 Free Software Foundation, either version 3 of the License, or (at your |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
11 option) any later version. |
| 428 | 12 |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
16 for more details. |
| 428 | 17 |
| 18 You should have received a copy of the GNU General Public License | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4759
diff
changeset
|
19 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 428 | 20 |
| 21 /* Synched up with: FSF 19.31. */ | |
| 22 | |
| 23 /* | |
| 24 * Define symbols to identify the version of Unix this is. | |
| 25 * Define all the symbols that apply correctly. | |
| 26 */ | |
| 27 | |
| 28 /* #define UNIPLUS */ | |
| 29 /* #define USG5 */ | |
| 30 /* #define USG */ | |
| 31 /* #define HPUX */ | |
| 32 /* #define UMAX */ | |
| 33 /* #define BSD4_3 */ | |
| 34 /* #define BSD */ | |
| 35 | |
| 36 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
| 37 It sets the Lisp variable system-type. */ | |
| 38 | |
| 39 #define SYSTEM_TYPE "berkeley-unix" | |
| 40 | |
| 41 /* Letter to use in finding device name of first pty, | |
| 42 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
| 43 | |
| 535 | 44 #define FIRST_PTY_LETTER 'p' |
| 428 | 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 /* If the character used to separate elements of the executable path | |
| 59 is not ':', #define this to be the appropriate character constant. */ | |
| 60 /* #define SEPCHAR ':' */ | |
| 61 | |
| 62 /* ============================================================ */ | |
| 63 | |
| 64 /* Here, add any special hacks needed | |
| 65 to make Emacs work on this system. For example, | |
| 66 you might define certain system call names that don't | |
| 67 exist on your system, or that do different things on | |
| 68 your system and must be used only through an encapsulation | |
| 69 (Which you should place, by convention, in sysdep.c). */ | |
| 70 | |
| 71 /* ============================================================ */ | |
| 72 | |
| 73 /* After adding support for a new system, modify the large case | |
| 74 statement in the `configure' script to recognize reasonable | |
| 75 configuration names, and add a description of the system to | |
| 76 `etc/MACHINES'. | |
| 77 | |
| 78 If you've just fixed a problem in an existing configuration file, | |
| 79 you should also check `etc/MACHINES' to make sure its descriptions | |
| 80 of known problems in that configuration should be updated. */ |
