Initialize 'version' variable to silence compiler warning.
[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) 1999-2001, 2003  Internet Software Consortium.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
11  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
12  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
13  * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
14  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
15  * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
16  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
17  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19
20 /* $Id: config.h.in,v 1.47.2.4 2003/08/05 00:44:43 marka Exp $ */
21 /* $DragonFly: src/usr.sbin/named/config.h,v 1.1 2004/05/27 18:15:42 dillon 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 you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
59 #define HAVE_IFLIST_SYSCTL 1
60
61 /* define if you need to #define _XPG4_2 before including sys/socket.h */
62 /* #undef NEED_XPG4_2_BEFORE_SOCKET_H */
63
64 /* define if you need to #define _XOPEN_SOURCE_ENTENDED before including
65  * sys/socket.h
66  */
67 /* #undef NEED_XSE_BEFORE_SOCKET_H */
68
69 /* define if chroot() is available */
70 #define HAVE_CHROOT 1
71
72 /* define if struct addrinfo exists */
73 #define HAVE_ADDRINFO 1
74
75 /* define if getaddrinfo() exists */
76 #define HAVE_GETADDRINFO 1
77
78 /* define if gai_strerror() exists */
79 #define HAVE_GAISTRERROR 1
80
81 /* define if arc4random() exists */
82 #define HAVE_ARC4RANDOM 1
83
84 /* define if pthread_setconcurrency() should be called to tell the
85  * OS how many threads we might want to run.
86  */
87 /* #undef CALL_PTHREAD_SETCONCURRENCY */
88
89 /* define if IPv6 is not disabled */
90 #define WANT_IPV6 1
91
92 /* define if flockfile() is available */
93 #define HAVE_FLOCKFILE 1
94
95 /* define if getc_unlocked() is available */
96 /* #undef HAVE_GETCUNLOCKED */
97
98 /* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
99 /* #undef SHUTUP_SPUTAUX */
100 #ifdef SHUTUP_SPUTAUX
101 struct __sFILE;
102 extern __inline int __sputaux(int _c, struct __sFILE *_p);
103 #endif
104
105 /* Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
106 /* #undef SHUTUP_SIGWAIT */
107 #ifdef SHUTUP_SIGWAIT
108 int sigwait(const unsigned int *set, int *sig);
109 #endif
110
111 /* Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
112 /* #undef SHUTUP_STDARG_CAST */
113 #if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__)
114 #include <stdarg.h>             /* Grr.  Must be included *every time*. */
115 /*
116  * The silly continuation line is to keep configure from
117  * commenting out the #undef.
118  */
119 #undef \
120         va_start
121 #define va_start(ap, last) \
122         do { \
123                 union { const void *konst; long *var; } _u; \
124                 _u.konst = &(last); \
125                 ap = (va_list)(_u.var + __va_words(__typeof(last))); \
126         } while (0)
127 #endif /* SHUTUP_STDARG_CAST && __GNUC__ */
128
129 /* define if the system has a random number generating device */
130 #define PATH_RANDOMDEV "/dev/urandom"
131
132 /* define if pthread_attr_getstacksize() is available */
133 /* #undef HAVE_PTHREAD_ATTR_GETSTACKSIZE */
134
135 /* define if pthread_attr_setstacksize() is available */
136 /* #undef HAVE_PTHREAD_ATTR_SETSTACKSIZE */
137
138 /* define if you have strerror in the C library. */
139 #define HAVE_STRERROR 1
140
141 /* Define to 1 if you have the <dlfcn.h> header file. */
142 /* #undef HAVE_DLFCN_H */
143
144 /* Define to 1 if you have the <fcntl.h> header file. */
145 #define HAVE_FCNTL_H 1
146
147 /* Define to 1 if you have the <inttypes.h> header file. */
148 #define HAVE_INTTYPES_H 1
149
150 /* Define to 1 if you have the `c' library (-lc). */
151 /* #undef HAVE_LIBC */
152
153 /* Define to 1 if you have the `c_r' library (-lc_r). */
154 /* #undef HAVE_LIBC_R */
155
156 /* Define to 1 if you have the `nsl' library (-lnsl). */
157 /* #undef HAVE_LIBNSL */
158
159 /* Define to 1 if you have the `pthread' library (-lpthread). */
160 /* #undef HAVE_LIBPTHREAD */
161
162 /* Define to 1 if you have the `socket' library (-lsocket). */
163 /* #undef HAVE_LIBSOCKET */
164
165 /* Define to 1 if you have the <linux/capability.h> header file. */
166 /* #undef HAVE_LINUX_CAPABILITY_H */
167
168 /* Define to 1 if you have the <memory.h> header file. */
169 #define HAVE_MEMORY_H 1
170
171 /* Define to 1 if you have the <stdint.h> header file. */
172 #define HAVE_STDINT_H 1
173
174 /* Define to 1 if you have the <stdlib.h> header file. */
175 #define HAVE_STDLIB_H 1
176
177 /* Define to 1 if you have the <strings.h> header file. */
178 #define HAVE_STRINGS_H 1
179
180 /* Define to 1 if you have the <string.h> header file. */
181 #define HAVE_STRING_H 1
182
183 /* Define to 1 if you have the <sys/prctl.h> header file. */
184 /* #undef HAVE_SYS_PRCTL_H */
185
186 /* Define to 1 if you have the <sys/select.h> header file. */
187 #define HAVE_SYS_SELECT_H 1
188
189 /* Define to 1 if you have the <sys/sockio.h> header file. */
190 #define HAVE_SYS_SOCKIO_H 1
191
192 /* Define to 1 if you have the <sys/stat.h> header file. */
193 #define HAVE_SYS_STAT_H 1
194
195 /* Define to 1 if you have the <sys/sysctl.h> header file. */
196 #define HAVE_SYS_SYSCTL_H 1
197
198 /* Define to 1 if you have the <sys/time.h> header file. */
199 #define HAVE_SYS_TIME_H 1
200
201 /* Define to 1 if you have the <sys/types.h> header file. */
202 #define HAVE_SYS_TYPES_H 1
203
204 /* Define to 1 if you have the <unistd.h> header file. */
205 #define HAVE_UNISTD_H 1
206
207 /* Define to the address where bug reports for this package should be sent. */
208 #define PACKAGE_BUGREPORT ""
209
210 /* Define to the full name of this package. */
211 #define PACKAGE_NAME ""
212
213 /* Define to the full name and version of this package. */
214 #define PACKAGE_STRING ""
215
216 /* Define to the one symbol short name of this package. */
217 #define PACKAGE_TARNAME ""
218
219 /* Define to the version of this package. */
220 #define PACKAGE_VERSION ""
221
222 /* Define to 1 if you have the ANSI C header files. */
223 #define STDC_HEADERS 1
224
225 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
226 #define TIME_WITH_SYS_TIME 1
227
228 /* Define to 1 if your processor stores words with the most significant byte
229    first (like Motorola and SPARC, unlike Intel and VAX). */
230 /* #undef WORDS_BIGENDIAN */
231
232 /* Define to empty if `const' does not conform to ANSI C. */
233 /* #undef const */
234
235 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
236    if it is not supported. */
237 /* #undef inline */
238
239 /* Define to `unsigned' if <sys/types.h> does not define. */
240 /* #undef size_t */
241
242 /* Define to `int' if <sys/types.h> does not define. */
243 /* #undef ssize_t */