Mercurial > hg > xemacs-beta
comparison src/s/unipl5-0.h @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | 43dd3413c7c7 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:376386a54a3c |
---|---|
1 /* Definitions file for GNU Emacs running on UniSoft's UniPlus 5.0 | |
2 Support for this system is not finished; don't expect this to work. | |
3 Copyright (C) 1985, 1986 Free Software Foundation, Inc. | |
4 | |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
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 USG /* System III, System V, etc */ | |
30 | |
31 #define USG5 | |
32 | |
33 #define UNIPLUS | |
34 | |
35 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
36 It sets the Lisp variable system-type. */ | |
37 | |
38 #define SYSTEM_TYPE "unisoft-unix" | |
39 | |
40 /* Letter to use in finding device name of first pty, | |
41 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
42 | |
43 /* #define FIRST_PTY_LETTER 'a' */ | |
44 | |
45 /* | |
46 * Define HAVE_PTYS if the system supports pty devices. | |
47 */ | |
48 | |
49 /* #define HAVE_PTYS */ | |
50 | |
51 /* Define this macro if system defines a type `union wait'. */ | |
52 | |
53 #define HAVE_UNION_WAIT | |
54 | |
55 #define NO_SUBPROCESSES | |
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 /* Define SHORTNAMES if the C compiler can distinguish only | |
70 short names. It means that the stuff in ../shortnames | |
71 must be run to convert the long names to short ones. | |
72 | |
73 Some USG systems support long names. | |
74 If yours is one, DO NOT change this file! | |
75 Do #undef SHORTNAMES in the m- file or in config.h. */ | |
76 | |
77 #define SHORTNAMES | |
78 | |
79 /* The file containing the kernel's symbol table is called /unix. */ | |
80 | |
81 #define KERNEL_FILE "/unix" | |
82 | |
83 /* The symbol in the kernel where the load average is found | |
84 is named avenrun. */ | |
85 | |
86 #define LDAV_SYMBOL "avenrun" | |
87 | |
88 /* Special hacks needed to make Emacs run on this system. */ | |
89 | |
90 /* On USG systems the system calls are interruptible by signals | |
91 that the user program has elected to catch. Thus the system call | |
92 must be retried in these cases. To handle this without massive | |
93 changes in the source code, we remap the standard system call names | |
94 to names for our own functions in sysdep.c that do the system call | |
95 with retries. */ | |
96 | |
97 #define INTERRUPTIBLE_OPEN | |
98 #define INTERRUPTIBLE_IO | |
99 | |
100 /* Compiler bug bites when default ADDR_CORRECT is used. */ | |
101 | |
102 #define ADDR_CORRECT(x) (x) | |
103 | |
104 /* Special library needed for linking for Uniplus */ | |
105 | |
106 #define LIBS_SYSTEM -lnet | |
107 | |
108 /* A system-specific loader switch is needed. */ | |
109 | |
110 #define LD_SWITCH_SYSTEM -N -L/lib/libg /usr/lib/unshared.ld |