XEmacs 21.2.30 "Hygeia".
[chise/xemacs-chise.git.1] / src / m / next.h
1 /* Configuration file for the NeXT machine.
2    Copyright (C) 1990 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING.  If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Synched up with: FSF 19.31. and Emacs for NeXTstep 4.1 */
22
23 /* Say this machine is a next if not previously defined */
24
25 #ifndef NeXT
26 #define NeXT
27 #endif
28
29 /* Say that the text segment of a.out includes the header;
30    the header actually occupies the first few bytes of the text segment
31    and is counted in hdr.a_text.  */
32
33 #define A_TEXT_OFFSET(HDR) sizeof (HDR)
34
35 /* Mask for address bits within a memory segment */
36
37 #define SEGSIZ 0x20000
38 #define SEGMENT_MASK (SEGSIZ - 1)
39
40 #define HAVE_UNIX_DOMAIN
41
42 #define LIB_X11_LIB "-L/usr/lib/X11 -lX11"
43
44 /* This avoids a problem in Xos.h when using co-Xist 3.01.  */
45 #define X_NOT_POSIX
46
47 /* Conflicts in process.c between ioctl.h & tty.h use of t_foo fields */
48
49 #define NO_T_CHARS_DEFINES
50
51 /* Use our own unexec routines */
52
53 #define UNEXEC "unexnext.o"
54
55 /* We don't have a g library either, so override the -lg LIBS_DEBUG switch */
56
57 #define LIBS_DEBUG
58
59 /* We don't have a libgcc.a, so we can't let LIB_GCC default to -lgcc */
60
61 #define LIB_GCC
62
63 /* Link this program just by running cc.  */
64 #define ORDINARY_LINK
65
66 /* start_of_text isn't actually used, so make it compile without error.  */
67 #define TEXT_START 0
68 /* This seems to be right for end_of_text, but it may not be used anyway.  */
69 #define TEXT_END get_etext ()
70 /* This seems to be right for end_of_data, but it may not be used anyway.  */
71 #define DATA_END get_edata ()
72
73 /* Defining KERNEL_FILE causes lossage because sys/file.h
74    stupidly gets confused by it.  */
75 #undef KERNEL_FILE
76
77 #define LD_SWITCH_MACHINE
78
79 /* #define environ _environ */
80
81 /* XEmacs change from Barry Warsaw. */
82 #ifndef NOT_C_CODE
83 /* this is only typedef'd in types.h if _POSIX_SOURCE is defined
84  * but the problem with that is that compiling with -posix links
85  * in -lposix instead of -lsys_s, and the latter defines some
86  * important NeXT AppKit symbols.
87  */
88 typedef unsigned short mode_t;
89 #endif /* ! NOT_C_CODE */
90
91 #define ASSERT_VALID_POINTER(pnt) (assert ((((int) pnt) & 1) == 0))