]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - lib/bind/isc/isc/platform.h
Copy stable/8 to releng/8.2 in preparation for FreeBSD-8.2 release.
[FreeBSD/releng/8.2.git] / lib / bind / isc / isc / platform.h
1 /* $FreeBSD$ */
2
3 /*
4  * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
5  * Copyright (C) 1999-2003  Internet Software Consortium.
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19
20 /* $Id: platform.h.in,v 1.48.84.2 2009/02/16 23:47:15 tbox Exp $ */
21
22 #ifndef ISC_PLATFORM_H
23 #define ISC_PLATFORM_H 1
24
25 /*! \file */
26
27 /*****
28  ***** Platform-dependent defines.
29  *****/
30
31 /***
32  *** Network.
33  ***/
34
35 /*! \brief
36  * Define if this system needs the <netinet/in6.h> header file included
37  * for full IPv6 support (pretty much only UnixWare).
38  */
39 #undef ISC_PLATFORM_NEEDNETINETIN6H
40
41 /*! \brief
42  * Define if this system needs the <netinet6/in6.h> header file included
43  * to support in6_pkinfo (pretty much only BSD/OS).
44  */
45 #undef ISC_PLATFORM_NEEDNETINET6IN6H
46
47 /*! \brief
48  * If sockaddrs on this system have an sa_len field, ISC_PLATFORM_HAVESALEN
49  * will be defined.
50  */
51 #define ISC_PLATFORM_HAVESALEN 1
52
53 /*! \brief
54  * If this system has the IPv6 structure definitions, ISC_PLATFORM_HAVEIPV6
55  * will be defined.
56  */
57 #define ISC_PLATFORM_HAVEIPV6 1
58
59 /*! \brief
60  * If this system is missing in6addr_any, ISC_PLATFORM_NEEDIN6ADDRANY will
61  * be defined.
62  */
63 #undef ISC_PLATFORM_NEEDIN6ADDRANY
64
65 /*! \brief
66  * If this system is missing in6addr_loopback, ISC_PLATFORM_NEEDIN6ADDRLOOPBACK
67  * will be defined.
68  */
69 #undef ISC_PLATFORM_NEEDIN6ADDRLOOPBACK
70
71 /*! \brief
72  * If this system has in6_pktinfo, ISC_PLATFORM_HAVEIN6PKTINFO will be
73  * defined.
74  */
75 #define ISC_PLATFORM_HAVEIN6PKTINFO 1
76
77 /*! \brief
78  * If this system has in_addr6, rather than in6_addr, ISC_PLATFORM_HAVEINADDR6
79  * will be defined.
80  */
81 #undef ISC_PLATFORM_HAVEINADDR6
82
83 /*! \brief
84  * If this system has sin6_scope_id, ISC_PLATFORM_HAVESCOPEID will be defined.
85  */
86 #define ISC_PLATFORM_HAVESCOPEID 1
87
88 /*! \brief
89  * If this system needs inet_ntop(), ISC_PLATFORM_NEEDNTOP will be defined.
90  */
91 #undef ISC_PLATFORM_NEEDNTOP
92
93 /*! \brief
94  * If this system needs inet_pton(), ISC_PLATFORM_NEEDPTON will be defined.
95  */
96 #undef ISC_PLATFORM_NEEDPTON
97
98 /*! \brief
99  * If this system needs in_port_t, ISC_PLATFORM_NEEDPORTT will be defined.
100  */
101 #undef ISC_PLATFORM_NEEDPORTT
102
103 /*! \brief
104  * Define if the system has struct lifconf which is a extended struct ifconf
105  * for IPv6.
106  */
107 #undef ISC_PLATFORM_HAVELIFCONF
108
109 /*! \brief
110  * Define if the system has struct if_laddrconf which is a extended struct
111  * ifconf for IPv6.
112  */
113 #undef ISC_PLATFORM_HAVEIF_LADDRCONF
114
115 /*! \brief
116  * Define if the system has struct if_laddrreq.
117  */
118 #undef ISC_PLATFORM_HAVEIF_LADDRREQ
119
120 /*! \brief
121  * Define either ISC_PLATFORM_BSD44MSGHDR or ISC_PLATFORM_BSD43MSGHDR.
122  */
123 #define ISC_NET_BSD44MSGHDR 1
124
125 /*! \brief
126  * Define if the system supports if_nametoindex.
127  */
128 #define ISC_PLATFORM_HAVEIFNAMETOINDEX 1
129
130 /*! \brief
131  * Define on some UnixWare systems to fix erroneous definitions of various
132  * IN6_IS_ADDR_* macros.
133  */
134 #undef ISC_PLATFORM_FIXIN6ISADDR
135
136 /*! \brief
137  * Define if the system supports kqueue multiplexing
138  */
139 #define ISC_PLATFORM_HAVEKQUEUE 1
140
141 /*! \brief
142  * Define if the system supports epoll multiplexing
143  */
144 #undef ISC_PLATFORM_HAVEEPOLL
145
146 /*! \brief
147  * Define if the system supports /dev/poll multiplexing
148  */
149 #undef ISC_PLATFORM_HAVEDEVPOLL
150
151 /*
152  *** Printing.
153  ***/
154
155 /*! \brief
156  * If this system needs vsnprintf() and snprintf(), ISC_PLATFORM_NEEDVSNPRINTF
157  * will be defined.
158  */
159 #undef ISC_PLATFORM_NEEDVSNPRINTF
160
161 /*! \brief
162  * If this system need a modern sprintf() that returns (int) not (char*).
163  */
164 #undef ISC_PLATFORM_NEEDSPRINTF
165
166 /*! \brief
167  * The printf format string modifier to use with isc_uint64_t values.
168  */
169 #define ISC_PLATFORM_QUADFORMAT "ll"
170
171 /***
172  *** String functions.
173  ***/
174 /*
175  * If the system needs strsep(), ISC_PLATFORM_NEEDSTRSEP will be defined.
176  */
177 #undef ISC_PLATFORM_NEEDSTRSEP
178
179 /*
180  * If the system needs strlcpy(), ISC_PLATFORM_NEEDSTRLCPY will be defined.
181  */
182 #undef ISC_PLATFORM_NEEDSTRLCPY
183
184 /*
185  * If the system needs strlcat(), ISC_PLATFORM_NEEDSTRLCAT will be defined.
186  */
187 #undef ISC_PLATFORM_NEEDSTRLCAT
188
189 /*
190  * Define if this system needs strtoul.
191  */
192 #undef ISC_PLATFORM_NEEDSTRTOUL
193
194 /*
195  * Define if this system needs memmove.
196  */
197 #undef ISC_PLATFORM_NEEDMEMMOVE
198
199 /***
200  *** Miscellaneous.
201  ***/
202
203 /*
204  * Defined if we are using threads.
205  */
206 #define ISC_PLATFORM_USETHREADS 1
207
208 /*
209  * Defined if unistd.h does not cause fd_set to be delared.
210  */
211 #undef ISC_PLATFORM_NEEDSYSSELECTH
212
213 /*
214  * Defined to <gssapi.h> or <gssapi/gssapi.h> for how to include
215  * the GSSAPI header.
216  */
217
218
219 /*
220  * Type used for resource limits.
221  */
222 #define ISC_PLATFORM_RLIMITTYPE rlim_t
223
224 /*
225  * Define if your compiler supports "long long int".
226  */
227 #define ISC_PLATFORM_HAVELONGLONG 1
228
229 /*
230  * Define if PTHREAD_ONCE_INIT should be surrounded by braces to
231  * prevent compiler warnings (such as with gcc on Solaris 2.8).
232  */
233 #undef ISC_PLATFORM_BRACEPTHREADONCEINIT
234
235 /*
236  * Used to control how extern data is linked; needed for Win32 platforms.
237  */
238 #undef ISC_PLATFORM_USEDECLSPEC
239
240 /*
241  * Define if the platform has <sys/un.h>.
242  */
243 #define ISC_PLATFORM_HAVESYSUNH 1
244
245 /*
246  * If the "xadd" operation is available on this architecture,
247  * ISC_PLATFORM_HAVEXADD will be defined.
248  */
249 #define ISC_PLATFORM_HAVEXADD 1
250
251 /*
252  * If the "xaddq" operation (64bit xadd) is available on this architecture,
253  * ISC_PLATFORM_HAVEXADDQ will be defined.
254  */
255 /*
256  * FreeBSD local modification, preserve this over upgrades
257  */
258 #ifdef __amd64__
259 #define ISC_PLATFORM_HAVEXADDQ 1
260 #else
261 #undef ISC_PLATFORM_HAVEXADDQ
262 #endif
263
264 /*
265  * If the "atomic swap" operation is available on this architecture,
266  * ISC_PLATFORM_HAVEATOMICSTORE" will be defined.
267  */
268 #define ISC_PLATFORM_HAVEATOMICSTORE 1
269
270 /*
271  * If the "compare-and-exchange" operation is available on this architecture,
272  * ISC_PLATFORM_HAVECMPXCHG will be defined.
273  */
274 #define ISC_PLATFORM_HAVECMPXCHG 1
275
276 /*
277  * Define if gcc ASM extension is available
278  */
279 #define ISC_PLATFORM_USEGCCASM 1
280
281 /*
282  * Define if Tru64 style ASM syntax must be used.
283  */
284 #undef ISC_PLATFORM_USEOSFASM
285
286 /*
287  * Define if the standard __asm function must be used.
288  */
289
290
291 /*
292  * Define if the platform has <strings.h>.
293  */
294 #define ISC_PLATFORM_HAVESTRINGSH 1
295
296 /***
297  ***    Windows dll support.
298  ***/
299
300 /*
301  * Define if MacOS style of PPC assembly must be used.
302  * e.g. "r6", not "6", for register six.
303  */
304
305
306 #ifndef ISC_PLATFORM_USEDECLSPEC
307 #define LIBISC_EXTERNAL_DATA
308 #define LIBDNS_EXTERNAL_DATA
309 #define LIBISCCC_EXTERNAL_DATA
310 #define LIBISCCFG_EXTERNAL_DATA
311 #define LIBBIND9_EXTERNAL_DATA
312 #else /*! \brief ISC_PLATFORM_USEDECLSPEC */
313 #ifdef LIBISC_EXPORTS
314 #define LIBISC_EXTERNAL_DATA __declspec(dllexport)
315 #else
316 #define LIBISC_EXTERNAL_DATA __declspec(dllimport)
317 #endif
318 #ifdef LIBDNS_EXPORTS
319 #define LIBDNS_EXTERNAL_DATA __declspec(dllexport)
320 #else
321 #define LIBDNS_EXTERNAL_DATA __declspec(dllimport)
322 #endif
323 #ifdef LIBISCCC_EXPORTS
324 #define LIBISCCC_EXTERNAL_DATA __declspec(dllexport)
325 #else
326 #define LIBISCCC_EXTERNAL_DATA __declspec(dllimport)
327 #endif
328 #ifdef LIBISCCFG_EXPORTS
329 #define LIBISCCFG_EXTERNAL_DATA __declspec(dllexport)
330 #else
331 #define LIBISCCFG_EXTERNAL_DATA __declspec(dllimport)
332 #endif
333 #ifdef LIBBIND9_EXPORTS
334 #define LIBBIND9_EXTERNAL_DATA __declspec(dllexport)
335 #else
336 #define LIBBIND9_EXTERNAL_DATA __declspec(dllimport)
337 #endif
338 #endif /*! \brief ISC_PLATFORM_USEDECLSPEC */
339
340 /*
341  * Tell emacs to use C mode for this file.
342  *
343  * Local Variables:
344  * mode: c
345  * End:
346  */
347
348 #endif /* ISC_PLATFORM_H */