annotate src/s/isc3-0.h @ 142:1856695b1fa9 r20-2b5

Import from CVS: tag r20-2b5
author cvs
date Mon, 13 Aug 2007 09:33:18 +0200
parents 376386a54a3c
children 0132846995bd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* s- file for Interactive (ISC) Unix version 3.0 on the 386. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #include "isc2-2.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 /* This appears on 3.0, presumably as part of what SunSoft call X2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 #undef NO_X_DESTROY_DATABASE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 /* People say that using -traditional causes lossage with `const',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 so we might as well try getting rid of -traditional. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 #undef C_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 /* We indirectly #include s/usg5-3.h, which says to use libX11_s and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 libc_s. Martin Tomes <mt00@controls.eurotherm.co.uk> says that ISC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 has no libX11_s, and that linking with libc_s causes sbrk not to work. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #undef LIB_X11_LIB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #undef LIBX11_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* TIOCGWINSZ isn't broken; you just have to know where to find it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #undef BROKEN_TIOCGWINSZ
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #define NEED_SIOCTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* We need either _XOPEN_SOURCE or _POSIX_SOURCE to import the posix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 signal symbols; might as well use _XOPEN_SOURCE. Defining _SYSV3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ensures that we don't lose the traditional symbols as a side effect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 from this or __STDC__ being defined. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define C_SWITCH_SYSTEM -D_XOPEN_SOURCE -D_SYSV3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #ifdef __GNUC__ /* Currently we use -lcposix only with gcc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* This works around a bug in ISC 4.0 and 3.0; it fails
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 to clear the "POSIX process" flag on an exec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 It won't be needed for 4.1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define EXTRA_INITIALIZE __setostype (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #endif