1: /* GNU Emacs site configuration file.
2: Copyright (C) 1985 Richard M. Stallman.
3:
4: This file is part of GNU Emacs.
5:
6: GNU Emacs is distributed in the hope that it will be useful,
7: but WITHOUT ANY WARRANTY. No author or distributor
8: accepts responsibility to anyone for the consequences of using it
9: or for whether it serves any particular purpose or works at all,
10: unless he says so in writing. Refer to the GNU Emacs General Public
11: License for full details.
12:
13: Everyone is granted permission to copy, modify and redistribute
14: GNU Emacs, but only under the conditions described in the
15: GNU Emacs General Public License. A copy of this license is
16: supposed to have been given to you along with GNU Emacs so you
17: can know your rights and responsibilities. It should be in a
18: file named COPYING. Among other things, the copyright notice
19: and this notice must be preserved on all copies. */
20:
21:
22: /* NOTE: This is the config file for generic 4.3BSD.
23: If you want to make a change to the configuration file which
24: is included in the Emacs distribution, the file config.h.dist must
25: also be modified.
26: */
27:
28: /* Include here a s- file that describes the system type you are using.
29: Alternatives now defined include
30: s-bsd4.1.h, s-bsd4.2.h and s-bsd4.3.h for Berkeley systems,
31: s-unipl5.2.h and s-unipl.5.0.h for Unisoft-modified system V,
32: and s-usg5.2.h for ordinary losing system V.
33: See s-template.h for documentation on writing s- files. */
34: #include "s-bsd4.3.h"
35:
36: /* Include here a m- file that describes the machine and system you use.
37: Alternatives implemented so far are
38: m-vax.h for vaxen.
39: m-mega68.h for Megatest 68000's.
40: m-sun.h for Sun 68000's.
41: m-ns16000.h for 16000's (not sure how general this is yet)
42: m-pyramid.h for pyramids.
43: m-dual68.h for dual 68000's (that run Unisoft port).
44: m-apollo.h for Apollo running their own system.
45: See m-template.h for info on what m- files should define.
46: */
47: #include "m-vax.h"
48:
49:
50: /* define HAVE_X_WINDOWS if you want to use the X window system */
51:
52: #undef HAVE_X_WINDOWS
53:
54: /* subprocesses should be defined if you want to
55: have code for asynchronous subprocesses
56: (as used in M-x compile and M-x shell).
57: These do not work for some USG systems yet;
58: for the ones where they work, the s-*.h file defines this flag. */
59:
60: #ifndef USG
61: #define subprocesses
62: #endif
63:
64: /* Define USER_FULL_NAME to return a string
65: that is the user's full name.
66: It can assume that the variable `pw'
67: points to the password file entry for this user.
68:
69: At some sites, the pw_gecos field contains
70: the user's full name. If neither this nor any other
71: field contains the right thing, use pw_name,
72: giving the user's login name, since that is better than nothing. */
73:
74: #define USER_FULL_NAME pw->pw_gecos
75:
76: /* Define AMPERSAND_FULL_NAME if you use the convention
77: that & in the full name stands for the login id. */
78:
79: #define AMPERSAND_FULL_NAME
80:
81: /* Maximum screen width we handle. */
82:
83: #define MScreenWidth 300
84:
85: /* Maximum screen length we handle. */
86:
87: #define MScreenLength 300
88:
89: /* # bytes of pure Lisp code to leave space for.
90: 130000 is enough for Emacs as distributed by me, Richard Stallman,
91: with the set of preloaded packages I set up. */
92:
93: #define PURESIZE 130000
94:
95: /* Define HIGHPRI as a negative number
96: if you want Emacs to run at a higher than normal priority.
97: For this to take effect, you must install it as setuid root. */
98:
99: #undef HIGHPRI
Defined macros
Usage of this include