config.h.in revision 186462
1/* config.h.in.  Generated from configure.in by autoheader.  */
2/*
3 * Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
4 * Copyright (C) 1999-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 ISC DISCLAIMS ALL WARRANTIES WITH
11 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
17 */
18
19/* $Id: config.h.in,v 1.60.18.34 2008/10/21 02:47:25 marka Exp $ */
20
21/*! \file */
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#undef HAVE_SYSCTLBYNAME
54
55/** define if catgets() is available */
56#undef HAVE_CATGETS
57
58/** define if getifaddrs() exists */
59#undef HAVE_GETIFADDRS
60
61/** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
62#undef HAVE_IFLIST_SYSCTL
63
64/** define if chroot() is available */
65#undef HAVE_CHROOT
66
67/** define if tzset() is available */
68#undef HAVE_TZSET
69
70/** define if struct addrinfo exists */
71#undef HAVE_ADDRINFO
72
73/** define if getaddrinfo() exists */
74#undef HAVE_GETADDRINFO
75
76/** define if gai_strerror() exists */
77#undef HAVE_GAISTRERROR
78
79/** define if arc4random() exists */
80#undef HAVE_ARC4RANDOM
81
82/**
83 * define if pthread_setconcurrency() should be called to tell the
84 * OS how many threads we might want to run.
85 */
86#undef CALL_PTHREAD_SETCONCURRENCY
87
88/** define if IPv6 is not disabled */
89#undef WANT_IPV6
90
91/** define if flockfile() is available */
92#undef HAVE_FLOCKFILE
93
94/** define if getc_unlocked() is available */
95#undef HAVE_GETCUNLOCKED
96
97/** Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
98#undef SHUTUP_SPUTAUX
99#ifdef SHUTUP_SPUTAUX
100struct __sFILE;
101extern __inline int __sputaux(int _c, struct __sFILE *_p);
102#endif
103
104/** Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
105#undef SHUTUP_SIGWAIT
106#ifdef SHUTUP_SIGWAIT
107int sigwait(const unsigned int *set, int *sig);
108#endif
109
110/** Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
111#undef SHUTUP_STDARG_CAST
112#if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__)
113#include <stdarg.h>		/** Grr.  Must be included *every time*. */
114/**
115 * The silly continuation line is to keep configure from
116 * commenting out the #undef.
117 */
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#undef PATH_RANDOMDEV
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#undef HAVE_STRERROR
140
141/** Define if you are running under Compaq TruCluster. */
142#undef HAVE_TRUCLUSTER
143
144/* Define if OpenSSL includes DSA support */
145#undef HAVE_OPENSSL_DSA
146
147/* Define to the length type used by the socket API (socklen_t, size_t, int). */
148#undef ISC_SOCKADDR_LEN_T
149
150/* Define if threads need PTHREAD_SCOPE_SYSTEM */
151#undef NEED_PTHREAD_SCOPE_SYSTEM
152
153/* Define if recvmsg() does not meet all of the BSD socket API specifications.
154   */
155#undef BROKEN_RECVMSG
156
157/* Define if you cannot bind() before connect() for TCP sockets. */
158#undef BROKEN_TCP_BIND_BEFORE_CONNECT
159
160/* Solaris hack to get select_large_fdset. */
161#undef FD_SETSIZE
162
163/* Define to 1 if you have the `capset' function. */
164#undef HAVE_CAPSET
165
166/* Define to 1 if you have the <dlfcn.h> header file. */
167#undef HAVE_DLFCN_H
168
169/* Define to 1 if you have the <fcntl.h> header file. */
170#undef HAVE_FCNTL_H
171
172/* Define to 1 if you have the <inttypes.h> header file. */
173#undef HAVE_INTTYPES_H
174
175/* Define to 1 if you have the `c' library (-lc). */
176#undef HAVE_LIBC
177
178/* Define to 1 if you have the `c_r' library (-lc_r). */
179#undef HAVE_LIBC_R
180
181/* Define to 1 if you have the `nsl' library (-lnsl). */
182#undef HAVE_LIBNSL
183
184/* Define to 1 if you have the `pthread' library (-lpthread). */
185#undef HAVE_LIBPTHREAD
186
187/* Define to 1 if you have the `scf' library (-lscf). */
188#undef HAVE_LIBSCF
189
190/* Define to 1 if you have the `socket' library (-lsocket). */
191#undef HAVE_LIBSOCKET
192
193/* Define to 1 if you have the `thr' library (-lthr). */
194#undef HAVE_LIBTHR
195
196/* Define to 1 if you have the <linux/capability.h> header file. */
197#undef HAVE_LINUX_CAPABILITY_H
198
199/* Define to 1 if you have the <locale.h> header file. */
200#undef HAVE_LOCALE_H
201
202/* Define to 1 if you have the <memory.h> header file. */
203#undef HAVE_MEMORY_H
204
205/* Define to 1 if you have the <net/if6.h> header file. */
206#undef HAVE_NET_IF6_H
207
208/* Define to 1 if you have the `setlocale' function. */
209#undef HAVE_SETLOCALE
210
211/* Define to 1 if you have the <stdint.h> header file. */
212#undef HAVE_STDINT_H
213
214/* Define to 1 if you have the <stdlib.h> header file. */
215#undef HAVE_STDLIB_H
216
217/* Define to 1 if you have the <strings.h> header file. */
218#undef HAVE_STRINGS_H
219
220/* Define to 1 if you have the <string.h> header file. */
221#undef HAVE_STRING_H
222
223/* Define to 1 if you have the <sys/capability.h> header file. */
224#undef HAVE_SYS_CAPABILITY_H
225
226/* Define to 1 if you have the <sys/devpoll.h> header file. */
227#undef HAVE_SYS_DEVPOLL_H
228
229/* Define to 1 if you have the <sys/dyntune.h> header file. */
230#undef HAVE_SYS_DYNTUNE_H
231
232/* Define to 1 if you have the <sys/param.h> header file. */
233#undef HAVE_SYS_PARAM_H
234
235/* Define to 1 if you have the <sys/prctl.h> header file. */
236#undef HAVE_SYS_PRCTL_H
237
238/* Define to 1 if you have the <sys/select.h> header file. */
239#undef HAVE_SYS_SELECT_H
240
241/* Define to 1 if you have the <sys/sockio.h> header file. */
242#undef HAVE_SYS_SOCKIO_H
243
244/* Define to 1 if you have the <sys/stat.h> header file. */
245#undef HAVE_SYS_STAT_H
246
247/* Define to 1 if you have the <sys/sysctl.h> header file. */
248#undef HAVE_SYS_SYSCTL_H
249
250/* Define to 1 if you have the <sys/time.h> header file. */
251#undef HAVE_SYS_TIME_H
252
253/* Define to 1 if you have the <sys/types.h> header file. */
254#undef HAVE_SYS_TYPES_H
255
256/* Define to 1 if you have the <sys/un.h> header file. */
257#undef HAVE_SYS_UN_H
258
259/* Define if running under Compaq TruCluster */
260#undef HAVE_TRUCLUSTER
261
262/* Define to 1 if you have the <unistd.h> header file. */
263#undef HAVE_UNISTD_H
264
265/* Defined if extern char *optarg is not declared. */
266#undef NEED_OPTARG
267
268/* Define if connect does not honour the permission on the UNIX domain socket.
269   */
270#undef NEED_SECURE_DIRECTORY
271
272/* Define to the address where bug reports for this package should be sent. */
273#undef PACKAGE_BUGREPORT
274
275/* Define to the full name of this package. */
276#undef PACKAGE_NAME
277
278/* Define to the full name and version of this package. */
279#undef PACKAGE_STRING
280
281/* Define to the one symbol short name of this package. */
282#undef PACKAGE_TARNAME
283
284/* Define to the version of this package. */
285#undef PACKAGE_VERSION
286
287/* Sets which flag to pass to open/fcntl to make non-blocking
288   (O_NDELAY/O_NONBLOCK). */
289#undef PORT_NONBLOCK
290
291/* Define to 1 if you have the ANSI C header files. */
292#undef STDC_HEADERS
293
294/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
295#undef TIME_WITH_SYS_TIME
296
297/* Defined if you need to use ioctl(FIONBIO) instead a fcntl call to make
298   non-blocking. */
299#undef USE_FIONBIO_IOCTL
300
301/* define if idnkit support is to be included. */
302#undef WITH_IDN
303
304/* Define to 1 if your processor stores words with the most significant byte
305   first (like Motorola and SPARC, unlike Intel and VAX). */
306#undef WORDS_BIGENDIAN
307
308/* Define to empty if `const' does not conform to ANSI C. */
309#undef const
310
311/* Define to `__inline__' or `__inline' if that's what the C compiler
312   calls it, or to nothing if 'inline' is not supported under any name.  */
313#ifndef __cplusplus
314#undef inline
315#endif
316
317/* Define to `unsigned int' if <sys/types.h> does not define. */
318#undef size_t
319
320/* Define to `int' if <sys/types.h> does not define. */
321#undef ssize_t
322
323/* Define to `unsigned long' if <sys/types.h> does not define. */
324#undef uintptr_t
325
326/* Define to empty if the keyword `volatile' does not work. Warning: valid
327   code using `volatile' can become incorrect without. Disable with care. */
328#undef volatile
329