Upgrade bind to bind-9.3.2-P1
[dragonfly.git] / usr.sbin / named / config.h
1 /* config.h.  Generated by configure.  */
2 /* config.h.in.  Generated from configure.in by autoheader.  */
3 /*
4  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
5  * Copyright (C) 1999-2003  Internet Software Consortium.
6  *
7  * Permission to use, copy, modify, and 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: config.h.in,v 1.47.2.3.2.20 2005/10/20 23:57:38 marka Exp $ */
21 /* $DragonFly: src/usr.sbin/named/config.h,v 1.2 2006/09/20 21:48:39 victor Exp $ */
22
23 /***
24  *** This file is not to be included by any public header files, because
25  *** it does not get installed.
26  ***/
27
28 /* define to `int' if <sys/types.h> doesn't define.  */
29 /* #undef ssize_t */
30
31 /* define on DEC OSF to enable 4.4BSD style sa_len support */
32 /* #undef _SOCKADDR_LEN */
33
34 /* define if your system needs pthread_init() before using pthreads */
35 /* #undef NEED_PTHREAD_INIT */
36
37 /* define if your system has sigwait() */
38 /* #undef HAVE_SIGWAIT */
39
40 /* define if sigwait() is the UnixWare flavor */
41 /* #undef HAVE_UNIXWARE_SIGWAIT */
42
43 /* define on Solaris to get sigwait() to work using pthreads semantics */
44 /* #undef _POSIX_PTHREAD_SEMANTICS */
45
46 /* define if LinuxThreads is in use */
47 /* #undef HAVE_LINUXTHREADS */
48
49 /* define if sysconf() is available */
50 /* #undef HAVE_SYSCONF */
51
52 /* define if sysctlbyname() is available */
53 #define HAVE_SYSCTLBYNAME 1
54
55 /* define if catgets() is available */
56 #define HAVE_CATGETS 1
57
58 /* define if getifaddrs() exists */
59 #define HAVE_GETIFADDRS 1
60
61 /* define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
62 #define HAVE_IFLIST_SYSCTL 1
63
64 /* define if chroot() is available */
65 #define HAVE_CHROOT 1
66
67 /* define if tzset() is available */
68 #define HAVE_TZSET 1
69
70 /* define if struct addrinfo exists */
71 #define HAVE_ADDRINFO 1
72
73 /* define if getaddrinfo() exists */
74 #define HAVE_GETADDRINFO 1
75
76 /* define if gai_strerror() exists */
77 #define HAVE_GAISTRERROR 1
78
79 /* define if arc4random() exists */
80 #define HAVE_ARC4RANDOM 1
81
82 /* define if pthread_setconcurrency() should be called to tell the
83  * OS how many threads we might want to run.
84  */
85 /* #undef CALL_PTHREAD_SETCONCURRENCY */
86
87 /* define if IPv6 is not disabled */
88 #define WANT_IPV6 1
89
90 /* define if flockfile() is available */
91 #define HAVE_FLOCKFILE 1
92
93 /* define if getc_unlocked() is available */
94 #define HAVE_GETCUNLOCKED 1
95
96 /* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
97 /* #undef SHUTUP_SPUTAUX */
98 #ifdef SHUTUP_SPUTAUX
99 struct __sFILE;
100 extern __inline int __sputaux(int _c, struct __sFILE *_p);
101 #endif
102
103 /* Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
104 /* #undef SHUTUP_SIGWAIT */
105 #ifdef SHUTUP_SIGWAIT
106 int sigwait(const unsigned int *set, int *sig);
107 #endif
108
109 /* Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
110 /* #undef SHUTUP_STDARG_CAST */
111 #if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__)
112 #include <stdarg.h>             /* Grr.  Must be included *every time*. */
113 /*
114  * The silly continuation line is to keep configure from
115  * commenting out the #undef.
116  */
117 #undef \
118         va_start
119 #define va_start(ap, last) \
120         do { \
121                 union { const void *konst; long *var; } _u; \
122                 _u.konst = &(last); \
123                 ap = (va_list)(_u.var + __va_words(__typeof(last))); \
124         } while (0)
125 #endif /* SHUTUP_STDARG_CAST && __GNUC__ */
126
127 /* define if the system has a random number generating device */
128 #define PATH_RANDOMDEV "/dev/urandom"
129
130 /* define if pthread_attr_getstacksize() is available */
131 /* #undef HAVE_PTHREAD_ATTR_GETSTACKSIZE */
132
133 /* define if pthread_attr_setstacksize() is available */
134 /* #undef HAVE_PTHREAD_ATTR_SETSTACKSIZE */
135
136 /* define if you have strerror in the C library. */
137 #define HAVE_STRERROR 1
138
139 /* Define if you are running under Compaq TruCluster. */
140 /* #undef HAVE_TRUCLUSTER */
141
142 /* Define if OpenSSL includes DSA support */
143 #define HAVE_OPENSSL_DSA 1
144
145 /* Define to the length type used by the socket API (socklen_t, size_t, int). */
146 #define ISC_SOCKADDR_LEN_T socklen_t
147
148 /* Define if threads need PTHREAD_SCOPE_SYSTEM */
149 /* #undef NEED_PTHREAD_SCOPE_SYSTEM */
150
151 /* Define to 1 if you have the <dlfcn.h> header file. */
152 /* #undef HAVE_DLFCN_H */
153
154 /* Define to 1 if you have the <fcntl.h> header file. */
155 #define HAVE_FCNTL_H 1
156
157 /* Define to 1 if you have the <inttypes.h> header file. */
158 #define HAVE_INTTYPES_H 1
159
160 /* Define to 1 if you have the `c' library (-lc). */
161 /* #undef HAVE_LIBC */
162
163 /* Define to 1 if you have the `c_r' library (-lc_r). */
164 /* #undef HAVE_LIBC_R */
165
166 /* Define to 1 if you have the `nsl' library (-lnsl). */
167 /* #undef HAVE_LIBNSL */
168
169 /* Define to 1 if you have the `pthread' library (-lpthread). */
170 /* #undef HAVE_LIBPTHREAD */
171
172 /* Define to 1 if you have the `scf' library (-lscf). */
173 /* #undef HAVE_LIBSCF */
174
175 /* Define to 1 if you have the `socket' library (-lsocket). */
176 /* #undef HAVE_LIBSOCKET */
177
178 /* Define to 1 if you have the <linux/capability.h> header file. */
179 /* #undef HAVE_LINUX_CAPABILITY_H */
180
181 /* Define to 1 if you have the <memory.h> header file. */
182 #define HAVE_MEMORY_H 1
183
184 /* Define to 1 if you have the <net/if6.h> header file. */
185 /* #undef HAVE_NET_IF6_H */
186
187 /* Define to 1 if you have the <stdint.h> header file. */
188 #define HAVE_STDINT_H 1
189
190 /* Define to 1 if you have the <stdlib.h> header file. */
191 #define HAVE_STDLIB_H 1
192
193 /* Define to 1 if you have the <strings.h> header file. */
194 #define HAVE_STRINGS_H 1
195
196 /* Define to 1 if you have the <string.h> header file. */
197 #define HAVE_STRING_H 1
198
199 /* Define to 1 if you have the <sys/param.h> header file. */
200 #define HAVE_SYS_PARAM_H 1
201
202 /* Define to 1 if you have the <sys/prctl.h> header file. */
203 /* #undef HAVE_SYS_PRCTL_H */
204
205 /* Define to 1 if you have the <sys/select.h> header file. */
206 #define HAVE_SYS_SELECT_H 1
207
208 /* Define to 1 if you have the <sys/sockio.h> header file. */
209 #define HAVE_SYS_SOCKIO_H 1
210
211 /* Define to 1 if you have the <sys/stat.h> header file. */
212 #define HAVE_SYS_STAT_H 1
213
214 /* Define to 1 if you have the <sys/sysctl.h> header file. */
215 #define HAVE_SYS_SYSCTL_H 1
216
217 /* Define to 1 if you have the <sys/time.h> header file. */
218 #define HAVE_SYS_TIME_H 1
219
220 /* Define to 1 if you have the <sys/types.h> header file. */
221 #define HAVE_SYS_TYPES_H 1
222
223 /* Define if running under Compaq TruCluster */
224 /* #undef HAVE_TRUCLUSTER */
225
226 /* Define to 1 if you have the <unistd.h> header file. */
227 #define HAVE_UNISTD_H 1
228
229 /* Defined if extern char *optarg is not declared. */
230 /* #undef NEED_OPTARG */
231
232 /* Define to the address where bug reports for this package should be sent. */
233 #define PACKAGE_BUGREPORT ""
234
235 /* Define to the full name of this package. */
236 #define PACKAGE_NAME ""
237
238 /* Define to the full name and version of this package. */
239 #define PACKAGE_STRING ""
240
241 /* Define to the one symbol short name of this package. */
242 #define PACKAGE_TARNAME ""
243
244 /* Define to the version of this package. */
245 #define PACKAGE_VERSION ""
246
247 /* Sets which flag to pass to open/fcntl to make non-blocking
248    (O_NDELAY/O_NONBLOCK). */
249 #define PORT_NONBLOCK O_NONBLOCK
250
251 /* Define to 1 if you have the ANSI C header files. */
252 #define STDC_HEADERS 1
253
254 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
255 #define TIME_WITH_SYS_TIME 1
256
257 /* Defined if you need to use ioctl(FIONBIO) instead a fcntl call to make
258    non-blocking. */
259 /* #undef USE_FIONBIO_IOCTL */
260
261 /* Define to 1 if your processor stores words with the most significant byte
262    first (like Motorola and SPARC, unlike Intel and VAX). */
263 /* #undef WORDS_BIGENDIAN */
264
265 /* Define to empty if `const' does not conform to ANSI C. */
266 /* #undef const */
267
268 /* Define to `__inline__' or `__inline' if that's what the C compiler
269    calls it, or to nothing if 'inline' is not supported under any name.  */
270 #ifndef __cplusplus
271 /* #undef inline */
272 #endif
273
274 /* Define to `unsigned' if <sys/types.h> does not define. */
275 /* #undef size_t */
276
277 /* Define to `int' if <sys/types.h> does not define. */
278 /* #undef ssize_t */
279
280 /* Define to `unsigned long' if <sys/types.h> does not define. */
281 /* #undef uintptr_t */