(src/Makefile, lib-src/Makefile): Delete ^L. Fix definition of $undefs.
[emacs.git] / src / s / usg5-3.h
blob53d47a3a0585095965422b95a9f005f966e27265
1 /* Definitions file for GNU Emacs running on AT&T's System V Release 3
2 Copyright (C) 1987 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 * Define symbols to identify the version of Unix this is.
23 * Define all the symbols that apply correctly.
26 #define USG /* System III, System V, etc */
28 #define USG5
30 #define USG5_3
32 /* SYSTEM_TYPE should indicate the kind of system you are using.
33 It sets the Lisp variable system-type. */
35 #define SYSTEM_TYPE "usg-unix-v"
37 /* nomultiplejobs should be defined if your system's shell
38 does not have "job control" (the ability to stop a program,
39 run some other program, then continue the first one). */
41 #define NOMULTIPLEJOBS
43 /* Default is to set interrupt_input to 0: don't do input buffering within Emacs */
45 /* #define INTERRUPT_INPUT */
47 /* Letter to use in finding device name of first pty,
48 if system supports pty's. 'p' means it is /dev/ptyp0 */
50 #define FIRST_PTY_LETTER 'p'
53 * Define HAVE_TERMIO if the system provides sysV-style ioctls
54 * for terminal control.
57 #define HAVE_TERMIO
60 * Define HAVE_TIMEVAL if the system supports the BSD style clock values.
61 * Look in <sys/time.h> for a timeval structure.
64 /* #define HAVE_TIMEVAL */
67 * Define HAVE_SELECT if the system supports the `select' system call.
70 /* SVr3.2 ports of X include an emulation of select in the libraries. */
71 #ifdef HAVE_X_WINDOWS
72 #define HAVE_SELECT
73 #endif
76 * Define HAVE_PTYS if the system supports pty devices.
79 /* Some versions of V.3 have this, but not all.
80 #define HAVE_PTYS
81 #define SYSV_PTYS */
83 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
85 /* #define HAVE_SOCKETS */
88 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate
89 * The 4.2 opendir, etc., library functions.
92 /* #define NONSYSTEM_DIR_LIBRARY */
95 * Define SYSV_SYSTEM_DIR to use the V.3 getdents/readir
96 * library functions. Almost, but not quite the same as
97 * the 4.2 functions
99 #define SYSV_SYSTEM_DIR
101 /* Define this symbol if your system has the functions bcopy, etc. */
103 /* #define BSTRING */
105 /* subprocesses should be defined if you want to
106 have code for asynchronous subprocesses
107 (as used in M-x compile and M-x shell).
108 This is supposed to work now on system V release 2. */
110 #define subprocesses
112 /* If your system uses COFF (Common Object File Format) then define the
113 preprocessor symbol "COFF". */
115 #define COFF
117 /* define MAIL_USE_FLOCK if the mailer uses flock
118 to interlock access to /usr/spool/mail/$USER.
119 The alternative is that a lock file named
120 /usr/spool/mail/$USER.lock. */
122 /* #define MAIL_USE_FLOCK */
124 /* Define CLASH_DETECTION if you want lock files to be written
125 so that Emacs can tell instantly when you try to modify
126 a file that someone else has modified in his Emacs. */
128 /* #define CLASH_DETECTION */
130 /* Define SHORTNAMES if the C compiler can distinguish only
131 short names. It means that the stuff in ../shortnames
132 must be run to convert the long names to short ones. */
134 /* #define SHORTNAMES */
136 /* We use the Berkeley (and usg5.2.2) interface to nlist. */
138 #define NLIST_STRUCT
140 /* The file containing the kernel's symbol table is called /unix. */
142 #define KERNEL_FILE "/unix"
144 /* The symbol in the kernel where the load average is found
145 is named avenrun. */
147 #define LDAV_SYMBOL "avenrun"
149 /* Define this if system V IPC is available. */
151 #define HAVE_SYSVIPC
153 /* Special hacks needed to make Emacs run on this system. */
156 * Make the sigsetmask function go away. Don't know what the
157 * ramifications of this are, but doesn't seem possible to
158 * emulate it properly anyway at this point.
161 #define sigsetmask(mask) /* Null expansion */
163 /* setjmp and longjmp can safely replace _setjmp and _longjmp,
164 but they will run slower. */
166 #define _setjmp setjmp
167 #define _longjmp longjmp
169 /* On USG systems the system calls are interruptible by signals
170 that the user program has elected to catch. Thus the system call
171 must be retried in these cases. To handle this without massive
172 changes in the source code, we remap the standard system call names
173 to names for our own functions in sysdep.c that do the system call
174 with retries. */
176 #define read sys_read
177 #define write sys_write
178 #define open sys_open
179 #define close sys_close
181 #define INTERRUPTIBLE_OPEN
182 #define INTERRUPTIBLE_CLOSE
183 #define INTERRUPTIBLE_IO
185 /* On USG systems these have different names */
186 #define index strchr
187 #define rindex strrchr
189 /* USG systems tend to put everything declared static
190 into the initialized data area, which becomes pure after dumping Emacs.
191 Foil this. Emacs carefully avoids static vars inside functions. */
193 #define static
195 /* Compiler bug bites on many systems when default ADDR_CORRECT is used. */
197 #define ADDR_CORRECT(x) (x)
199 /* Use terminfo instead of termcap. */
201 #define TERMINFO
203 /* Some variants have TIOCGETC, but the structures to go with it
204 are not declared. */
206 #define BROKEN_TIOCGETC
208 /* AT&T SVr3 X wants to be linked with shared libraries */
210 #define LIB_X11_LIB -lX11_s
212 /* X needs to talk on the network, so search the network library. */
214 #define LIBX10_SYSTEM -lnsl_s
215 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc_s
217 /* The docs for system V/386 suggest v.3 has sigpause,
218 so let's give it a try. */
219 #define HAVE_SYSV_SIGPAUSE
221 /* Some variants have TIOCGWINSZ, but the structures to go with it
222 are not declared. */
224 #define BROKEN_TIOCGWINSZ
226 /* SVr3 does not have utimes(2) */
228 #define USE_UTIME
230 /* If we're using the System V X port, BSD bstring functions will be handy */
232 #ifdef HAVE_X_WINDOWS
233 #define BSTRING
234 #endif /* HAVE_X_WINDOWS */
236 /* Enable support for shared libraries in unexec. */
238 #define USG_SHARED_LIBRARIES
240 /* On USG systems signal handlers return void */
242 #define SIGTYPE void