annotate src/s/umips.h @ 22:8fc7fe29b841 r19-15b94

Import from CVS: tag r19-15b94
author cvs
date Mon, 13 Aug 2007 08:50:29 +0200
parents 376386a54a3c
children 43dd3413c7c7
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 /* Definitions file for GNU Emacs running on Mips operating system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 That system can emulate either BSD or Sys V, in either case with changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 If BSD is defined, we assume BSD is being emulated; otherwise, Sys V. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 #ifdef BSD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 #include "bsd4-3.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #define C_SWITCH_SYSTEM -systype bsd43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #define LD_SWITCH_SYSTEM -systype bsd43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 #define LIBS_SYSTEM -lmld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #define LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #define START_FILES pre-crt0.o /lib/crt1.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 #define LIB_STANDARD -lc /usr/lib/crtn.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #define COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #define TERMINFO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 #undef MAIL_USE_FLOCK /* Someone should check this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #undef HAVE_UNION_WAIT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #else /* not BSD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "usg5-2-2.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #define LIBS_SYSTEM -lmld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define START_FILES pre-crt0.o /usr/lib/crt1.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #define LIB_STANDARD -lbsd -lc /usr/lib/crtn.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 /* #define LIBS_TERMCAP -lcurses */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #define C_SWITCH_SYSTEM -I/usr/include/bsd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 /* Don't try to use SIGIO even though it is defined. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #define BROKEN_SIGIO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* Describe special kernel features. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #if defined(emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include <bsd/sys/time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* The `select' in the system won't work for pipes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 so don't use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #define BROKEN_SELECT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define HAVE_PTYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 /* ??? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #define IRIS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #endif /* not BSD */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 /* High order bit must be stripped off nlist return values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #define FIXUP_KERNEL_SYMBOL_ADDR(NL) (NL)[0].n_value &= 0x7fffffff;