Mercurial > emacs
annotate src/s/lynxos.h @ 107279:6e3f2cca063f
Merge from mainline.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Tue, 16 Feb 2010 04:18:57 +0000 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
29654 | 1 /* Definitions file for GNU Emacs running on LynxOS-3.0.1 |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
106815 | 3 2008, 2009, 2010 Free Software Foundation, Inc. |
29654 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
29654 | 8 it under the terms of the GNU General Public License as published by |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
10 (at your option) any later version. |
29654 | 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 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
29654 | 19 |
20 /* LynxOS is almost a bsd 4.2 system */ | |
21 #include "s/bsd4-2.h" | |
22 | |
23 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
24 It sets the Lisp variable system-type. */ | |
25 | |
26 /* override the bsd definition */ | |
27 #undef SYSTEM_TYPE | |
28 #define SYSTEM_TYPE "lynxos 3.0.1" | |
29 | |
30 /* System stuff redefined from bsd4-2.h */ | |
31 #undef KERNEL_FILE | |
32 #define KERNEL_FILE "/lynx.os" | |
33 #undef LDAV_SYMBOL | |
34 #define LDAV_SYMBOL "load_average" | |
35 | |
36 /* misc defines */ | |
37 #define LNOFLSH 0 | |
38 | |
39 /* COFF related */ | |
40 #define COFF | |
41 #define NO_REMAP | |
42 #define SECTION_ALIGNMENT 0x1 | |
43 #define COFF_BSD_SYMBOLS | |
44 #define etext __etext | |
45 #define edata __edata | |
46 #define _start __text | |
47 | |
48 /* Compilation options */ | |
49 #define LIBS_DEBUG | |
50 #define ORDINARY_LINK | |
51 /* we define following to prevent all the lynxos's stupid compilation */ | |
52 /* warning messages */ | |
53 #define C_SWITCH_SYSTEM -D__NO_INCLUDE_WARN__ | |
54 #define LIBS_SYSTEM -lbsd | |
52401 | 55 |
56 /* arch-tag: fbc81ec9-1c45-416b-a368-799ae7c094a1 | |
57 (do not change this comment) */ |