Mercurial > emacs
annotate src/s/isc2-2.h @ 12729:21110e58640c
(kbd_buffer_get_event, swallow_events): Fix prev change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 31 Jul 1995 05:34:55 +0000 |
parents | b155247be266 |
children | a47af2f30446 |
rev | line source |
---|---|
456 | 1 /* system description file for Interactive (ISC) Unix version 2.2 on |
2 the 386. */ | |
3 | |
4 #include "usg5-3.h" | |
5 | |
2002 | 6 /* With this defined, subprocesses made by (e.g.) M-x grep don't exit |
7 cleanly, they just hang. ISC 2.2.1 does have select, in the -linet | |
8892 | 8 library, but I guess it's not what Emacs needs. --karl@cs.umb.edu */ |
9 #undef HAVE_SELECT /* override configuration decision */ | |
2002 | 10 |
11 /* Although ISC has sockets, again in -linet, again it's not what Emacs | |
12 needs. With this defined, interrupt-shell-subjob and the like do | |
13 nothing. --karl@cs.umb.edu | |
14 #define HAVE_SOCKETS */ | |
15 | |
16 | |
17 /* This keeps the .cdbx section that gcc puts out when generating | |
4779
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
18 stabs-in-coff output, so Emacs can be debugged. --karl@cs.umb.edu. */ |
2002 | 19 #define USG_SHARED_LIBRARIES |
20 | |
21 /* We can support lock files. */ | |
22 #define CLASH_DETECTION | |
23 #define NO_FCHMOD | |
24 | |
456 | 25 #define HAVE_PTYS |
26 #define MAXNAMLEN 512 | |
27 #define O_NDELAY O_NONBLOCK | |
28 #define MEMORY_IN_STRING_H | |
2002 | 29 |
4779
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
30 /* Tell gmalloc.c that we don't have memmove (system include files to the |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
31 contrary!). */ |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
32 #define MEMMOVE_MISSING |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
33 |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
34 /* Send a signal to a subprocess by "typing" a signal character. */ |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
35 #define SIGNALS_VIA_CHARACTERS |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
36 |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
37 /* -lPW is only needed if not using Gcc. We used to include -lcposix here |
9911 | 38 for the rename function, but some people say ISC's rename doesn't |
4779
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
39 work correctly with Emacs so we use Emacs' emulation instead. */ |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
40 #if defined (__GNUC__) |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
41 # define LIB_STANDARD -lcposix -lc |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
42 #else /* !__GNUC__ */ |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
43 # define LIB_STANDARD -lPW -lc |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
44 #endif /* !__GNUC__ */ |
2002 | 45 |
46 #define NO_X_DESTROY_DATABASE | |
524 | 47 |
2002 | 48 /* May be needed to avoid undefined symbols such as gethostname, |
49 inet_addr, gethostbyname, socket, connect, ... But if we are not | |
50 compiling with X support, it's not needed. */ | |
51 #ifdef HAVE_X_WINDOWS | |
524 | 52 #define LIBS_SYSTEM -linet |
2002 | 53 #endif |
524 | 54 |
55 /* This system has job control. */ | |
56 #undef NOMULTIPLEJOBS | |
2002 | 57 |
58 /* Inhibit asm code in netinet/in.h. Strictly speaking, only necessary | |
59 when -traditional is being used, but it doesn't hurt to | |
60 unconditionally define this. */ | |
61 #define NO_ASM | |
62 | |
4779
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
63 /* -traditional is not necessary if the system header files are fixed to |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
64 define getc and putc in the absence of _POSIX_SOURCE. GCC's from 2.4.4 |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
65 on do this. */ |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
66 #if !defined (__GNUC__) || __GNUC__ < 2 |
611531d01474
* Added fixes from Karl Berry for ISC-2.2.
Brian Fox <bfox@gnu.org>
parents:
3824
diff
changeset
|
67 # define C_SWITCH_SYSTEM -traditional |
2002 | 68 #endif |
69 | |
70 /* Some versions of ISC are said to define S_IFLNK even tho | |
71 they don't really support symlinks. */ | |
72 #undef S_IFLNK |