root/trunk/src/m/altos.h

Revision 4220, 1.7 kB (checked in by miyoshi, 8 months ago)

Sync up with Emacs22.2.

  • Property svn:eol-style set to native
Line 
1 /* altos machine description file       Altos 3068 Unix System V Release 2
2    Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004,
3                  2005, 2006, 2007, 2008  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 3, 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-2"  */
26
27 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
28    is the most significant byte.  */
29
30 #define WORDS_BIG_ENDIAN
31
32 #define EXPLICIT_SIGN_EXTEND
33
34 /* Use type int rather than a union, to represent Lisp_Object */
35
36 #define NO_UNION_TYPE
37
38 #define LIB_STANDARD -lc
39
40 #ifdef __GNUC__
41 #define alloca __builtin_alloca
42 #define HAVE_ALLOCA
43 #else
44 #define C_ALLOCA                /* we have -lPW and alloca but it's broken!
45                                    <vsedev!ron> */
46 #endif
47
48 #define SWITCH_ENUM_BUG
49
50 #define NO_REMAP
51 #define STACK_DIRECTION -1
52
53 #undef TERMINFO
54
55 #undef CANNOT_DUMP
56 #undef SHORTNAMES
57 #define TERMCAP
58
59 #define LIBS_TERMCAP -ltermlib
60 #define PURESIZE 220000
61 #define ALTOS
62
63 #ifdef __GNUC__
64 #define COFF_ENCAPSULATE
65 #endif
Note: See TracBrowser for help on using the browser.