(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / src / s / umax.h
blob36f5499a4b3c8b0e35b86d1d86e93b30011854ea
1 /* Definitions file for GNU Emacs running on UMAX 4.2
2 Copyright (C) 1985, 1986 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 * Define symbols to identify the version of Unix this is.
24 * Define all the symbols that apply correctly.
27 /* #define UNIPLUS */
28 /* #define USG5 */
29 /* #define USG */
30 /* #define BSD4_1 */
31 #define BSD4_2
32 /* #define BSD4_3 */
33 #define BSD_SYSTEM
34 #define UMAX4_2
35 #define UMAX
36 /* #define VMS */
38 /* SYSTEM_TYPE should indicate the kind of system you are using.
39 It sets the Lisp variable system-type. */
41 #define SYSTEM_TYPE "berkeley-unix"
43 /* NOMULTIPLEJOBS should be defined if your system's shell
44 does not have "job control" (the ability to stop a program,
45 run some other program, then continue the first one). */
47 /* #define NOMULTIPLEJOBS */
49 /* Emacs can read input using SIGIO and buffering characters itself,
50 or using CBREAK mode and making C-g cause SIGINT.
51 The choice is controlled by the variable interrupt_input.
52 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
54 SIGIO can be used only on systems that implement it (4.2 and 4.3).
55 CBREAK mode has two disadvantages
56 1) At least in 4.2, it is impossible to handle the Meta key properly.
57 I hear that in system V this problem does not exist.
58 2) Control-G causes output to be discarded.
59 I do not know whether this can be fixed in system V.
61 Another method of doing input is planned but not implemented.
62 It would have Emacs fork off a separate process
63 to read the input and send it to the true Emacs process
64 through a pipe.
67 #define INTERRUPT_INPUT
69 /* Letter to use in finding device name of first pty,
70 if system supports pty's. 'a' means it is /dev/ptya0 */
72 #define FIRST_PTY_LETTER 'p'
75 * Define HAVE_PTYS if the system supports pty devices.
78 #define HAVE_PTYS
80 /* Define this macro if system defines a type `union wait'. */
82 #define HAVE_UNION_WAIT
84 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
86 #define HAVE_SOCKETS
89 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate
90 * The 4.2 opendir, etc., library functions.
93 /* #define NONSYSTEM_DIR_LIBRARY */
95 /* Define this symbol if your system has the functions bcopy, etc. */
97 #define BSTRING
99 /* subprocesses should be defined if you want to
100 have code for asynchronous subprocesses
101 (as used in M-x compile and M-x shell).
102 This is generally OS dependent, and not supported
103 under most USG systems. */
105 #define subprocesses
107 /* If your system uses COFF (Common Object File Format) then define the
108 preprocessor symbol "COFF". */
110 #define COFF
112 /* define MAIL_USE_FLOCK if the mailer uses flock
113 to interlock access to /usr/spool/mail/$USER.
114 The alternative is that a lock file named
115 /usr/spool/mail/$USER.lock. */
117 #define MAIL_USE_FLOCK
119 /* Define CLASH_DETECTION if you want lock files to be written
120 so that Emacs can tell instantly when you try to modify
121 a file that someone else has modified in his Emacs. */
123 #define CLASH_DETECTION
125 /* The file containing the kernel's symbol table is called /vmunix. */
127 #define KERNEL_FILE "/vmunix"
129 /* The symbol in the kernel where the load average is found
130 is named _avenrun. */
132 #define LDAV_SYMBOL "_avenrun"
134 /* Here, on a separate page, add any special hacks needed
135 to make Emacs work on this system. For example,
136 you might define certain system call names that don't
137 exist on your system, or that do different things on
138 your system and must be used only through an encapsulation
139 (Which you should place, by convention, in sysdep.c). */
141 /* Specify alignment requirement for start of text and data sections
142 in the executable file. */
144 #define SECTION_ALIGNMENT pagemask
147 #define SEGMENT_MASK (64 * 1024 - 1)
150 /* crt0.c needs this for compilation because it uses asm. */
152 #define C_SWITCH_ASM -q nodirect_code
154 /* Encore machines with APC processor boards align sections on 4M
155 boundaries, so it is not easy to remap the start of the text segment
156 in the unexec() routine. For them you need the following two lines.
157 For DPC processors you can enable these or not, as you wish, but
158 you will get better performance without them. */
160 /* #define NO_REMAP
161 #define TEXT_START 0
164 /* Process groups work in the traditional BSD manner. */
166 #define BSD_PGRPS
168 /* arch-tag: 2860edda-ce9e-4cfa-943d-3a06c7045854
169 (do not change this comment) */