173
|
1 /* Synched up with: Completely divergent from FSF. */
|
163
|
2 #define SOLARIS2 1
|
|
3 #define POSIX 1
|
169
|
4
|
163
|
5 #ifndef USG
|
|
6 #define USG
|
|
7 #endif
|
169
|
8
|
163
|
9 #ifndef USG5_4
|
|
10 #define USG5_4
|
|
11 #endif
|
169
|
12
|
163
|
13 #undef _POSIX_C_SOURCE
|
169
|
14
|
173
|
15 #if OS_RELEASE > 54
|
|
16 /* There were some bugs with preprocessor symbol interaction, which
|
|
17 were not fixed until 2.5. */
|
|
18 #define __EXTENSIONS__ 1
|
169
|
19
|
163
|
20 #undef _XOPEN_SOURCE
|
169
|
21 #define _XOPEN_SOURCE 1
|
|
22
|
167
|
23 #undef _XOPEN_SOURCE_EXTENDED
|
163
|
24 #define _XOPEN_SOURCE_EXTENDED 1
|
173
|
25 #endif /* > Solaris 2.4 */
|
|
26
|
259
|
27 #if OS_RELEASE >= 57
|
|
28 #define HAVE_GETLOADAVG
|
|
29 #endif
|
|
30
|
173
|
31 /* Fix understandable GCC lossage on Solaris 2.6 */
|
|
32 #if defined(__GNUC__) && OS_RELEASE >= 56 && !defined(NOT_C_CODE)
|
|
33
|
|
34 /* GCC va_list munging is a little messed up */
|
|
35 #define __GNUC_VA_LIST
|
|
36 #define _VA_LIST_
|
|
37 #define _VA_LIST va_list
|
|
38 typedef void *__gnuc_va_list;
|
|
39 typedef __gnuc_va_list va_list;
|
|
40
|
|
41 /* Missing prototypes for functions added in Solaris 2.6 */
|
|
42 #include <sys/types.h>
|
|
43 struct msghdr;
|
|
44 struct sockaddr;
|
|
45 extern int __xnet_bind (int, const struct sockaddr *, size_t);
|
|
46 extern int __xnet_listen (int, int);
|
|
47 extern int __xnet_connect (int, const struct sockaddr *, size_t);
|
|
48 extern ssize_t __xnet_recvmsg (int, struct msghdr *, int);
|
|
49 extern ssize_t __xnet_sendmsg (int, const struct msghdr *, int);
|
|
50 extern ssize_t __xnet_sendto (int, const void *, size_t, int, const struct sockaddr *, size_t);
|
|
51 extern int __xnet_socket (int, int, int);
|
|
52 extern int __xnet_socketpair (int, int, int, int *);
|
|
53 extern int __xnet_getsockopt (int, int, int, void *, size_t *);
|
|
54 #endif /* GCC && >= Solaris 2.6 && C code */
|
0
|
55
|
163
|
56 #include "usg5-4-2.h" /* XEmacs change from 5-4 to 5-4-2 */
|
169
|
57 #undef PC /* Defined in x86 /usr/include/sys/reg.h */
|
0
|
58
|
|
59 /* SIGIO seems to be working under Solaris and it makes ^G work better... */
|
|
60 #undef BROKEN_SIGIO
|
|
61
|
|
62 /* eggert@twinsun.com said these work in Solaris.
|
|
63 Perhaps they work in all kinds of SVR4, but this is more conservative. */
|
|
64 #undef BROKEN_TIOCGETC
|
|
65 #undef BROKEN_TIOCGWINSZ
|
|
66
|
157
|
67 #ifdef NOT_C_CODE
|
163
|
68 #define ORDINARY_LINK
|
151
|
69 /* XEmacs change -- some Motif packages need -lgen to get regex and regcmp */
|
0
|
70
|
|
71 #undef LIBS_SYSTEM
|
157
|
72 #define LIBS_SYSTEM "-lsocket -lnsl -lelf -lgen -ldl"
|
0
|
73
|
|
74 /* SYSTEM_MALLOC must be defined if dbx/RTC is going to be used. dbx/RTC does
|
|
75 not work with a static definition of malloc(). */
|
|
76 /* We want to be able to test out ralloc.c. */
|
|
77 /* #define SYSTEM_MALLOC */
|
|
78
|
|
79 /* XEmacs: there used to be a special definition of
|
|
80 PTY_TTY_NAME_SPRINTF here that was identical to the
|
|
81 other SYSV R4 definitions except that it didn't
|
|
82 block SIGCHLD around the call to grantpt(). This
|
|
83 is *not* in 19.29 and is almost certainly incorrect.
|
|
84 */
|
|
85
|
151
|
86 #undef UNEXEC
|
163
|
87 #if OS_RELEASE < 56
|
157
|
88 #define UNEXEC "unexsol2.o"
|
163
|
89 #else
|
|
90 #define UNEXEC "unexsol2-6.o"
|
|
91 #endif
|
157
|
92
|
|
93 #else /* C_CODE */
|
163
|
94
|
|
95 #if OS_RELEASE <= 53
|
|
96 /* Solaris 2.3 has a bug in XListFontsWithInfo. */
|
|
97 #define BROKEN_XLISTFONTSWITHINFO
|
|
98 #endif
|
|
99
|
|
100 /* XEmacs addition: Raymond Toy says XEmacs completely misses SIGCHLD
|
|
101 when compiled with GCC 2.7.0 (but not, apparently, with SunPro C?),
|
|
102 X11R6, and Solaris 2.4.
|
|
103
|
|
104 Someone else submitted a simple test program that duplicates this
|
|
105 behavior, and says it has something to do with the fact that X11R6
|
|
106 links with the threads library. */
|
|
107
|
|
108 #ifdef THIS_IS_X11R6
|
|
109 #define BROKEN_SIGCHLD
|
|
110 #endif
|
|
111
|
|
112 #if OS_RELEASE < 55
|
173
|
113
|
|
114 #if __STDC__ == 1 && defined(__SUNPRO_C)
|
|
115 #define _POSIX_C_SOURCE 1
|
|
116 #include <setjmp.h>
|
|
117 #undef _POSIX_C_SOURCE
|
|
118 #endif /* cc -Xc */
|
|
119
|
167
|
120 /* Missing prototype, added in Solaris 2.5 */
|
173
|
121 extern void *__builtin_alloca (size_t);
|
163
|
122 #endif /* before SunOS 5.5 */
|
157
|
123
|
169
|
124 #if OS_RELEASE == 55
|
|
125 /* The following functions were added in Solaris 2.5,
|
|
126 but they forgot to add prototypes to the system header files. */
|
|
127 int getpagesize (void);
|
|
128 long random (void);
|
|
129 void srandom (unsigned int seed);
|
173
|
130 int usleep (unsigned int useconds);
|
169
|
131 #endif /* SunOS 5.5 */
|
|
132
|
173
|
133 /* 2.5 now has `random' back in libc but we don't want to use it. */
|
|
134 #if OS_RELEASE >= 55
|
|
135 #undef HAVE_RANDOM
|
|
136 /* Apparently not necessary here, and it causes 10% CPU chewage. */
|
|
137 #undef BROKEN_SIGCHLD
|
|
138 #endif /* >= SunOS 5.5 */
|
|
139
|
163
|
140 #if OS_RELEASE < 56
|
167
|
141 /* Missing prototypes, added in Solaris 2.6 */
|
157
|
142 struct timeval;
|
|
143 int utimes (char *file, struct timeval *tvp);
|
173
|
144 int gethostname (char *name, int namelen);
|
163
|
145 #endif /* before SunOS 5.6 */
|
|
146
|
|
147 #include <sys/utsname.h> /* warning: macro redefined: SYS_NMLN */
|
157
|
148
|
0
|
149 /* XEmacs: Solaris has sigsetjmp but using it leads to core dumps at
|
|
150 least under 2.4 */
|
|
151 #undef _setjmp
|
|
152 #define _setjmp setjmp
|
163
|
153
|
157
|
154 #endif /* C_CODE */
|