]> code.delx.au - gnu-emacs/blob - src/s/sol2.h
Merge from emacs--rel--22
[gnu-emacs] / src / s / sol2.h
1 /* Definitions file for GNU Emacs running on Solaris 2.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 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 of the License, or
10 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
19
20
21 #include "usg5-4.h"
22
23 #define SOLARIS2
24
25 /* eggert@twinsun.com said these work in Solaris.
26 Perhaps they work in all kinds of SVR4, but this is more conservative. */
27 #undef BROKEN_TIOCGETC
28 #undef BROKEN_TIOCGWINSZ
29
30 /* This triggers a conditional in xfaces.c. */
31 #define XOS_NEEDS_TIME_H
32
33 #define POSIX
34
35 /* Here is how to find X Windows. LD_SWITCH_X_SITE_AUX gives an -R option
36 says where to find X windows at run time. */
37 #ifndef __GNUC__
38 #define LD_SWITCH_SYSTEM LD_SWITCH_X_SITE_AUX
39 #else /* GCC */
40 /* We use ./prefix-args because we don't know whether LD_SWITCH_X_SITE_AUX
41 has anything in it. It can be empty.
42 This works ok in src. Luckily lib-src does not use LD_SWITCH_SYSTEM. */
43 #define LD_SWITCH_SYSTEM `./prefix-args -Xlinker LD_SWITCH_X_SITE_AUX`
44 #endif /* GCC */
45
46 #undef LIBS_SYSTEM
47 #define LIBS_SYSTEM -lsocket -lnsl -lkstat
48
49 /* Prefer kstat over kvm in getloadavg.c, kstat doesn't require root.
50 ghazi@caip.rutgers.edu, 7/21/97. Don't redefine if already defined
51 (e.g., by config.h). */
52 #ifndef HAVE_LIBKSTAT
53 #define HAVE_LIBKSTAT
54 #endif
55
56 /* eggert thinks all versions of SunPro C allowed this. */
57 #ifndef __GNUC__
58 #define C_DEBUG_SWITCH -g -O
59 #endif
60
61 /* inoue@ainet.or.jp says Solaris has a bug related to X11R6-style
62 XIM support. */
63
64 #define INHIBIT_X11R6_XIM
65
66 /* Must use the system's termcap, if we use any termcap.
67 It does special things. */
68
69 #ifndef TERMINFO
70 #define LIBS_TERMCAP -ltermcap
71 #endif
72
73 #define USE_MMAP_FOR_BUFFERS 1
74
75 /* arch-tag: b0640f78-5ad5-4093-97c3-5b3abbf5a2be
76 (do not change this comment) */