428
|
1 /* Configuration file for the Tektronix XD88 running UTekV 3.2e,
|
|
2 contributed by Kaveh Ghazi (ghazi@caip.rutgers.edu) 1/15/93.
|
|
3 You probably need to use gnu make (version 3.63 or higher.)
|
|
4 Copyright (C) 1993 Free Software Foundation, Inc.
|
|
5
|
|
6 This file is part of GNU Emacs.
|
|
7
|
|
8 GNU Emacs is free software; you can redistribute it and/or modify
|
|
9 it under the terms of the GNU General Public License as published by
|
|
10 the Free Software Foundation; either version 2, or (at your option)
|
|
11 any later version.
|
|
12
|
|
13 GNU Emacs is distributed in the hope that it will be useful,
|
|
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 GNU General Public License for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: FSF 19.31. */
|
|
24
|
|
25 /* Now define a symbol for the cpu type, if your compiler
|
|
26 does not define it automatically:
|
|
27 Ones defined so far include vax, m68000, ns16000, pyramid,
|
|
28 orion, tahoe, APOLLO and many others */
|
|
29 #ifndef m88000 /* Some 88k C compilers already define this */
|
|
30 #define m88000
|
|
31 #endif
|
|
32
|
|
33 /* Data type of load average, as read out of kmem. */
|
|
34 /* #define LOAD_AVE_TYPE double */ /* No load average on XD88. */
|
|
35 /* Convert that into an integer that is 100 for a load average of 1.0 */
|
|
36 /* #define LOAD_AVE_CVT(x) ((int) ((x) * 100.0)) */
|
|
37
|
|
38 /* Define CANNOT_DUMP on machines where unexec does not work.
|
|
39 Then the function dump-emacs will not be defined
|
|
40 and temacs will do (load "loadup") automatically unless told otherwise. */
|
|
41 /*#define CANNOT_DUMP*/
|
|
42
|
|
43 /* Define NO_REMAP if memory segmentation makes it not work well
|
|
44 to change the boundary between the text section and data section
|
|
45 when Emacs is dumped. If you define this, the preloaded Lisp
|
|
46 code will not be sharable; but that's better than failing completely. */
|
|
47 #define NO_REMAP
|
|
48
|
|
49 /* Define C_ALLOCA if this machine does not support a true alloca
|
|
50 and the one written in C should be used instead.
|
|
51 Define HAVE_ALLOCA to say that the system provides a properly
|
|
52 working alloca function and it should be used.
|
|
53 Define neither one if an assembler-language alloca
|
|
54 in the file alloca.s should be used. */
|
|
55 #ifdef __GNUC__
|
|
56 # define alloca __builtin_alloca /* Use the gcc builtin alloca() ... */
|
|
57 # define HAVE_ALLOCA /* ... and be sure that no other ones are tried out. */
|
|
58 # undef C_ALLOCA
|
|
59 # define C_OPTIMIZE_SWITCH "-O2"
|
|
60 #else /* not __GNUC__ */
|
|
61 # undef HAVE_ALLOCA
|
|
62 # define C_ALLOCA /* Use the alloca() supplied in alloca.c. */
|
|
63 # define STACK_DIRECTION -1 /* The stack grows towards lower addresses. */
|
|
64 # define C_OPTIMIZE_SWITCH "-O"
|
|
65 #endif /* __GNUC__ */
|
|
66
|
|
67 #undef LIB_X11_LIB /* Don't use shared libraries defined in usg5-3.h */
|
|
68 #undef LIBX11_SYSTEM
|
|
69
|
|
70 #define HAVE_PTYS /* XD88 SysV has PTYs. */
|
|
71 #define SYSV_PTYS /* Requires <termios.h> */
|
|
72
|
|
73 #ifdef ghs /* Stands for "Green Hills Software", defined only in /bin/cc */
|
|
74 /* -X18 means do not allocate programmer-defined local variables to a
|
|
75 register unless they are declared register. (Copied from perl-4.036
|
|
76 Green Hills C hints file. Might be needed for setjmp, I don't know.) */
|
|
77 # define C_SWITCH_MACHINE "-X18"
|
|
78 /* We need /lib/default.ld so that /bin/ld can read its link directives. */
|
|
79 # define LD_SWITCH_SYSTEM "/lib/default.ld"
|
|
80 #endif /* ghs */
|
|
81
|
|
82 /* We need this to get dumping to work */
|
|
83 #define KEEP_OLD_TEXT_SCNPTR
|