Mercurial > hg > xemacs-beta
comparison src/s/bsd4-3.h @ 4765:1257b938f03a
automatic merge
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Fri, 04 Dec 2009 10:59:45 +0900 |
parents | aa5ed11f473b |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
4764:dec62ca5a899 | 4765:1257b938f03a |
---|---|
1 /* Definitions file for XEmacs running on bsd 4.3 | 1 /* Definitions file for XEmacs running on bsd 4.3 |
2 Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 2 Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc. |
3 | 3 |
4 This file is part of XEmacs. | 4 This file is part of XEmacs. |
5 | 5 |
6 XEmacs is free software; you can redistribute it and/or modify | 6 XEmacs is free software; you can redistribute it and/or modify |
7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 Boston, MA 02111-1307, USA. */ | 19 Boston, MA 02111-1307, USA. */ |
20 | 20 |
21 /* Synched up with: FSF 19.31. */ | 21 /* Synched up with: FSF 19.31. */ |
22 | 22 |
23 #include "bsd4-2.h" | 23 #ifndef BSD |
24 #define BSD 43 | |
25 #endif /* BSD */ | |
24 | 26 |
25 #undef BSD4_2 | 27 /* SYSTEM_TYPE should indicate the kind of system you are using. |
28 * It sets the Lisp variable system-type. */ | |
29 | |
30 #define SYSTEM_TYPE "berkeley-unix" | |
31 | |
32 /* The file containing the kernel's symbol table is called /vmunix. */ | |
33 | |
34 #define KERNEL_FILE "/vmunix" | |
35 | |
36 /* The symbol in the kernel where the load average is found | |
37 * is named _avenrun. */ | |
38 | |
39 #define LDAV_SYMBOL "_avenrun" | |
26 | 40 |
27 /* We give these symbols the numeric values found in <sys/param.h> to | 41 /* We give these symbols the numeric values found in <sys/param.h> to |
28 avoid warnings about redefined macros. */ | 42 avoid warnings about redefined macros. */ |
29 #ifndef BSD4_3 | 43 #ifndef BSD4_3 |
30 #define BSD4_3 1 | 44 #define BSD4_3 1 |
31 #endif /* BSD4_3 */ | 45 #endif /* BSD4_3 */ |
32 | 46 |
33 #ifdef BSD_WAS_DEFINED | |
34 #undef BSD | |
35 #endif | |
36 | |
37 #ifndef BSD | |
38 #define BSD 43 | |
39 #endif /* BSD */ | |
40 | |
41 /* define MAIL_USE_FLOCK if the mailer uses flock | 47 /* define MAIL_USE_FLOCK if the mailer uses flock |
42 to interlock access to /usr/spool/mail/$USER. | 48 to interlock access to /usr/spool/mail/$USER. |
43 The alternative is that a lock file named | 49 The alternative is that a lock file named |
44 /usr/spool/mail/$USER.lock. */ | 50 /usr/spool/mail/$USER.lock. */ |
45 | 51 |
46 #define MAIL_USE_FLOCK | 52 #define MAIL_USE_FLOCK |
47 | |
48 /* Apparently not needed any more? */ | |
49 | |
50 #undef SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP |