0
|
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
|
163
|
10 #define C_SWITCH_SYSTEM "-systype bsd43"
|
|
11 #define LD_SWITCH_SYSTEM "-systype bsd43"
|
173
|
12 #undef LIBS_SYSTEM
|
|
13 /* #define LIBS_SYSTEM "-lmld" */ /* mrb */
|
0
|
14 #define LIBS_DEBUG
|
163
|
15 #define START_FILES "pre-crt0.o /lib/crt1.o"
|
|
16 #define LIB_STANDARD "-lc /usr/lib/crtn.o"
|
0
|
17
|
|
18 #define COFF
|
|
19 #define TERMINFO
|
|
20 #undef MAIL_USE_FLOCK /* Someone should check this. */
|
|
21
|
|
22 #else /* not BSD */
|
|
23
|
|
24 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */
|
|
25 #include "usg5-2-2.h"
|
|
26
|
173
|
27 #undef LIBS_SYSTEM
|
|
28 /* #define LIBS_SYSTEM "-lmld" */ /* mrb */
|
0
|
29 #define LIBS_DEBUG
|
163
|
30 #define START_FILES "pre-crt0.o /usr/lib/crt1.o"
|
|
31 #define LIB_STANDARD "-lbsd -lc /usr/lib/crtn.o"
|
0
|
32 /* #define LIBS_TERMCAP -lcurses */
|
|
33
|
163
|
34 #define C_SWITCH_SYSTEM "-I/usr/include/bsd"
|
0
|
35
|
|
36 /* Don't try to use SIGIO even though it is defined. */
|
|
37 #define BROKEN_SIGIO
|
|
38
|
|
39 /* Describe special kernel features. */
|
|
40
|
|
41 #if defined(emacs)
|
|
42 #include <bsd/sys/time.h>
|
|
43 #endif
|
|
44
|
|
45 /* The `select' in the system won't work for pipes,
|
|
46 so don't use it. */
|
|
47 #define BROKEN_SELECT
|
|
48
|
|
49 #define HAVE_PTYS
|
|
50
|
|
51 /* ??? */
|
|
52 #define IRIS
|
|
53
|
|
54 #endif /* not BSD */
|
|
55
|
|
56 /* High order bit must be stripped off nlist return values */
|
|
57 #define FIXUP_KERNEL_SYMBOL_ADDR(NL) (NL)[0].n_value &= 0x7fffffff;
|