Update years in copyright notice; nfc.
[bpt/emacs.git] / src / m / tad68k.h
1 /* Machine-dependent configuration for GNU Emacs for Tadpole 68k machines
2 Copyright (C) 1986, 2002, 2003, 2004, 2005,
3 2006 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22
23 /* The following line tells the configuration script what sort of
24 operating system this machine is likely to run.
25 USUAL-OPSYS="usg5-3" */
26
27 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word
28 is the most significant byte. */
29
30 #define WORDS_BIG_ENDIAN
31
32 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
33 * group of arguments and treat it as an array of the arguments. */
34
35 /* #define NO_ARG_ARRAY */
36
37 /* Define WORD_MACHINE if addresses and such have
38 * to be corrected before they can be used as byte counts. */
39
40 /* #define WORD_MACHINE */
41
42 /* Now define a symbol for the cpu type, if your compiler
43 does not define it automatically */
44
45 /* Use type int rather than a union, to represent Lisp_Object */
46 /* This is desirable for most machines. */
47
48 #define NO_UNION_TYPE
49
50 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
51 the 24-bit bit field into an int. In other words, if bit fields
52 are always unsigned.
53
54 If you use NO_UNION_TYPE, this flag does not matter. */
55
56 /* #define EXPLICIT_SIGN_EXTEND */
57
58 /* Data type of load average, as read out of kmem. */
59 /* #define LOAD_AVE_TYPE long */
60
61 /* Convert that into an integer that is 100 for a load average of 1.0 */
62
63 /* #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) */
64
65 /* Define CANNOT_DUMP on machines where unexec does not work.
66 Then the function dump-emacs will not be defined
67 and temacs will do (load "loadup") automatically unless told otherwise. */
68 /* #define CANNOT_DUMP */
69
70 /* Define VIRT_ADDR_VARIES if the virtual addresses of
71 pure and impure space as loaded can vary, and even their
72 relative order cannot be relied on.
73
74 Otherwise Emacs assumes that text space precedes data space,
75 numerically. */
76
77 /* #define VIRT_ADDR_VARIES */ /* Karl Kleinpaste says this isn't needed. */
78
79 /* SysV has alloca in the PW library */
80
81 #define LIB_STANDARD -lPW -lc
82
83 /* Define NO_REMAP if memory segmentation makes it not work well
84 to change the boundary between the text section and data section
85 when Emacs is dumped. If you define this, the preloaded Lisp
86 code will not be sharable; but that's better than failing completely. */
87
88 /* #define NO_REMAP */
89
90 /* Use Terminfo, not Termcap. */
91
92 #define TERMINFO
93
94 /* TPIX extras */
95
96 #define TPIX /* used in various source files */
97 #define BSTRING /* we do have the BSTRING functions */
98 #define CLASH_DETECTION /* we want to know about clashes */
99 #undef ADDR_CORRECT /* don't need this bug fix */
100 #define fchmod /* we don't have fchmod() */
101 #define SECTION_ALIGNMENT (2048-1) /* 2k boundaries required in unexec */
102 #define SEGMENT_MASK (128*1024-1) /* 128k offsets required in unexec */
103 #define C_DEBUG_SWITCH -O /* build with -O (TPIX has GCC 1.34) */
104
105 #define BROKEN_TIOCGWINSZ /* Don't try to use TIOCGWINSZ. */
106
107 /* omit next four lines if no TCP installed */
108
109 #define select gnu_select /* avoid select() name clash */
110 #define HAVE_PTYS /* we do have PTYs if we have TCP */
111 #define HAVE_SOCKETS /* we do have sockets if we have TCP */
112 #define LIBS_SYSTEM -lsocket /* get TCP networking functions */
113
114 /* arch-tag: e0c09754-b0f2-48da-a8a5-aee3c94838f4
115 (do not change this comment) */