comparison src/s/umips.h @ 0:376386a54a3c r19-14

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