/contrib/bind9/config.h.in

https://bitbucket.org/freebsd/freebsd-head/ · Autoconf · 441 lines · 174 code · 127 blank · 140 comment · 107 complexity · 5b90ca9deffad84f28e03ba6d0834bbb MD5 · raw file

  1. /* config.h.in. Generated from configure.in by autoheader. */
  2. /*
  3. * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
  4. * Copyright (C) 1999-2003 Internet Software Consortium.
  5. *
  6. * Permission to use, copy, modify, and/or 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. /* $Id$ */
  19. /*! \file */
  20. /***
  21. *** This file is not to be included by any public header files, because
  22. *** it does not get installed.
  23. ***/
  24. /** define on DEC OSF to enable 4.4BSD style sa_len support */
  25. #undef _SOCKADDR_LEN
  26. /** define if your system needs pthread_init() before using pthreads */
  27. #undef NEED_PTHREAD_INIT
  28. /** define if your system has sigwait() */
  29. #undef HAVE_SIGWAIT
  30. /** define if sigwait() is the UnixWare flavor */
  31. #undef HAVE_UNIXWARE_SIGWAIT
  32. /** define on Solaris to get sigwait() to work using pthreads semantics */
  33. #undef _POSIX_PTHREAD_SEMANTICS
  34. /** define if LinuxThreads is in use */
  35. #undef HAVE_LINUXTHREADS
  36. /** define if sysconf() is available */
  37. #undef HAVE_SYSCONF
  38. /** define if sysctlbyname() is available */
  39. #undef HAVE_SYSCTLBYNAME
  40. /** define if catgets() is available */
  41. #undef HAVE_CATGETS
  42. /** define if getifaddrs() exists */
  43. #undef HAVE_GETIFADDRS
  44. /** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
  45. #undef HAVE_IFLIST_SYSCTL
  46. /** define if tzset() is available */
  47. #undef HAVE_TZSET
  48. /** define if struct addrinfo exists */
  49. #undef HAVE_ADDRINFO
  50. /** define if getaddrinfo() exists */
  51. #undef HAVE_GETADDRINFO
  52. /** define if gai_strerror() exists */
  53. #undef HAVE_GAISTRERROR
  54. /** define if arc4random() exists */
  55. #undef HAVE_ARC4RANDOM
  56. /**
  57. * define if pthread_setconcurrency() should be called to tell the
  58. * OS how many threads we might want to run.
  59. */
  60. #undef CALL_PTHREAD_SETCONCURRENCY
  61. /** define if IPv6 is not disabled */
  62. #undef WANT_IPV6
  63. /** define if flockfile() is available */
  64. #undef HAVE_FLOCKFILE
  65. /** define if getc_unlocked() is available */
  66. #undef HAVE_GETCUNLOCKED
  67. /** Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
  68. #undef SHUTUP_SPUTAUX
  69. #ifdef SHUTUP_SPUTAUX
  70. struct __sFILE;
  71. extern __inline int __sputaux(int _c, struct __sFILE *_p);
  72. #endif
  73. /** Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
  74. #undef SHUTUP_SIGWAIT
  75. #ifdef SHUTUP_SIGWAIT
  76. int sigwait(const unsigned int *set, int *sig);
  77. #endif
  78. /** Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
  79. #undef SHUTUP_STDARG_CAST
  80. #if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__)
  81. #include <stdarg.h> /** Grr. Must be included *every time*. */
  82. /**
  83. * The silly continuation line is to keep configure from
  84. * commenting out the #undef.
  85. */
  86. #undef \
  87. va_start
  88. #define va_start(ap, last) \
  89. do { \
  90. union { const void *konst; long *var; } _u; \
  91. _u.konst = &(last); \
  92. ap = (va_list)(_u.var + __va_words(__typeof(last))); \
  93. } while (0)
  94. #endif /** SHUTUP_STDARG_CAST && __GNUC__ */
  95. /** define if the system has a random number generating device */
  96. #undef PATH_RANDOMDEV
  97. /** define if pthread_attr_getstacksize() is available */
  98. #undef HAVE_PTHREAD_ATTR_GETSTACKSIZE
  99. /** define if pthread_attr_setstacksize() is available */
  100. #undef HAVE_PTHREAD_ATTR_SETSTACKSIZE
  101. /** define if you have strerror in the C library. */
  102. #undef HAVE_STRERROR
  103. /** Define if you are running under Compaq TruCluster. */
  104. #undef HAVE_TRUCLUSTER
  105. /* Define if OpenSSL includes DSA support */
  106. #undef HAVE_OPENSSL_DSA
  107. /* Define to the length type used by the socket API (socklen_t, size_t, int). */
  108. #undef ISC_SOCKADDR_LEN_T
  109. /* Define if threads need PTHREAD_SCOPE_SYSTEM */
  110. #undef NEED_PTHREAD_SCOPE_SYSTEM
  111. /* Define if building universal (internal helper macro) */
  112. #undef AC_APPLE_UNIVERSAL_BUILD
  113. /* Define to enable the "filter-aaaa-on-v4" option. */
  114. #undef ALLOW_FILTER_AAAA_ON_V4
  115. /* define if ATF unit tests are to be built. */
  116. #undef ATF_TEST
  117. /* Define if recvmsg() does not meet all of the BSD socket API specifications.
  118. */
  119. #undef BROKEN_RECVMSG
  120. /* Define if you cannot bind() before connect() for TCP sockets. */
  121. #undef BROKEN_TCP_BIND_BEFORE_CONNECT
  122. /* Define to enable "rrset-order fixed" syntax. */
  123. #undef DNS_RDATASET_FIXED
  124. /* Define to enable rpz-nsdname rules. */
  125. #undef ENABLE_RPZ_NSDNAME
  126. /* Define to enable rpz-nsip rules. */
  127. #undef ENABLE_RPZ_NSIP
  128. /* Solaris hack to get select_large_fdset. */
  129. #undef FD_SETSIZE
  130. /* Define to nothing if C supports flexible array members, and to 1 if it does
  131. not. That way, with a declaration like `struct s { int n; double
  132. d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
  133. compilers. When computing the size of such an object, don't use 'sizeof
  134. (struct s)' as it overestimates the size. Use 'offsetof (struct s, d)'
  135. instead. Don't use 'offsetof (struct s, d[0])', as this doesn't work with
  136. MSVC and with C++ compilers. */
  137. #undef FLEXIBLE_ARRAY_MEMBER
  138. /* Define to 1 if you have the `chroot' function. */
  139. #undef HAVE_CHROOT
  140. /* Define to 1 if you have the <devpoll.h> header file. */
  141. #undef HAVE_DEVPOLL_H
  142. /* Define to 1 if you have the `dlclose' function. */
  143. #undef HAVE_DLCLOSE
  144. /* Define to 1 if you have the <dlfcn.h> header file. */
  145. #undef HAVE_DLFCN_H
  146. /* Define to 1 if you have the `dlopen' function. */
  147. #undef HAVE_DLOPEN
  148. /* Define to 1 if you have the `dlsym' function. */
  149. #undef HAVE_DLSYM
  150. /* Define to 1 if you have the `EVP_sha256' function. */
  151. #undef HAVE_EVP_SHA256
  152. /* Define to 1 if you have the `EVP_sha512' function. */
  153. #undef HAVE_EVP_SHA512
  154. /* Define to 1 if you have the <fcntl.h> header file. */
  155. #undef HAVE_FCNTL_H
  156. /* Define to 1 if you have the <gssapi/gssapi.h> header file. */
  157. #undef HAVE_GSSAPI_GSSAPI_H
  158. /* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
  159. #undef HAVE_GSSAPI_GSSAPI_KRB5_H
  160. /* Define to 1 if you have the <gssapi.h> header file. */
  161. #undef HAVE_GSSAPI_H
  162. /* Define to 1 if you have the <gssapi_krb5.h> header file. */
  163. #undef HAVE_GSSAPI_KRB5_H
  164. /* Define to 1 if you have the <inttypes.h> header file. */
  165. #undef HAVE_INTTYPES_H
  166. /* Define to 1 if you have the <kerberosv5/krb5.h> header file. */
  167. #undef HAVE_KERBEROSV5_KRB5_H
  168. /* Define to 1 if you have the <krb5.h> header file. */
  169. #undef HAVE_KRB5_H
  170. /* Define to 1 if you have the <krb5/krb5.h> header file. */
  171. #undef HAVE_KRB5_KRB5_H
  172. /* Define to 1 if you have the `c' library (-lc). */
  173. #undef HAVE_LIBC
  174. /* Define to 1 if you have the `cap' library (-lcap). */
  175. #undef HAVE_LIBCAP
  176. /* if system have backtrace function */
  177. #undef HAVE_LIBCTRACE
  178. /* Define to 1 if you have the `c_r' library (-lc_r). */
  179. #undef HAVE_LIBC_R
  180. /* Define to 1 if you have the `nsl' library (-lnsl). */
  181. #undef HAVE_LIBNSL
  182. /* Define to 1 if you have the `pthread' library (-lpthread). */
  183. #undef HAVE_LIBPTHREAD
  184. /* Define to 1 if you have the `scf' library (-lscf). */
  185. #undef HAVE_LIBSCF
  186. /* Define to 1 if you have the `socket' library (-lsocket). */
  187. #undef HAVE_LIBSOCKET
  188. /* Define to 1 if you have the `thr' library (-lthr). */
  189. #undef HAVE_LIBTHR
  190. /* Define if libxml2 was found */
  191. #undef HAVE_LIBXML2
  192. /* Define to 1 if you have the <linux/capability.h> header file. */
  193. #undef HAVE_LINUX_CAPABILITY_H
  194. /* Define to 1 if you have the <locale.h> header file. */
  195. #undef HAVE_LOCALE_H
  196. /* Define to 1 if you have the <memory.h> header file. */
  197. #undef HAVE_MEMORY_H
  198. /* Define to 1 if you have the `nanosleep' function. */
  199. #undef HAVE_NANOSLEEP
  200. /* Define to 1 if you have the <net/if6.h> header file. */
  201. #undef HAVE_NET_IF6_H
  202. /* Define if your OpenSSL version supports GOST. */
  203. #undef HAVE_OPENSSL_GOST
  204. /* Define to 1 if you have the <regex.h> header file. */
  205. #undef HAVE_REGEX_H
  206. /* Define to 1 if you have the `setegid' function. */
  207. #undef HAVE_SETEGID
  208. /* Define to 1 if you have the `seteuid' function. */
  209. #undef HAVE_SETEUID
  210. /* Define to 1 if you have the `setlocale' function. */
  211. #undef HAVE_SETLOCALE
  212. /* Define to 1 if you have the `setresgid' function. */
  213. #undef HAVE_SETRESGID
  214. /* Define to 1 if you have the `setresuid' function. */
  215. #undef HAVE_SETRESUID
  216. /* Define to 1 if you have the <stdint.h> header file. */
  217. #undef HAVE_STDINT_H
  218. /* Define to 1 if you have the <stdlib.h> header file. */
  219. #undef HAVE_STDLIB_H
  220. /* Define to 1 if you have the <strings.h> header file. */
  221. #undef HAVE_STRINGS_H
  222. /* Define to 1 if you have the <string.h> header file. */
  223. #undef HAVE_STRING_H
  224. /* Define to 1 if you have the <sys/capability.h> header file. */
  225. #undef HAVE_SYS_CAPABILITY_H
  226. /* Define to 1 if you have the <sys/devpoll.h> header file. */
  227. #undef HAVE_SYS_DEVPOLL_H
  228. /* Define to 1 if you have the <sys/dyntune.h> header file. */
  229. #undef HAVE_SYS_DYNTUNE_H
  230. /* Define to 1 if you have the <sys/param.h> header file. */
  231. #undef HAVE_SYS_PARAM_H
  232. /* Define to 1 if you have the <sys/prctl.h> header file. */
  233. #undef HAVE_SYS_PRCTL_H
  234. /* Define to 1 if you have the <sys/select.h> header file. */
  235. #undef HAVE_SYS_SELECT_H
  236. /* Define to 1 if you have the <sys/sockio.h> header file. */
  237. #undef HAVE_SYS_SOCKIO_H
  238. /* Define to 1 if you have the <sys/stat.h> header file. */
  239. #undef HAVE_SYS_STAT_H
  240. /* Define to 1 if you have the <sys/sysctl.h> header file. */
  241. #undef HAVE_SYS_SYSCTL_H
  242. /* Define to 1 if you have the <sys/time.h> header file. */
  243. #undef HAVE_SYS_TIME_H
  244. /* Define to 1 if you have the <sys/types.h> header file. */
  245. #undef HAVE_SYS_TYPES_H
  246. /* Define to 1 if you have the <sys/un.h> header file. */
  247. #undef HAVE_SYS_UN_H
  248. /* Define if running under Compaq TruCluster */
  249. #undef HAVE_TRUCLUSTER
  250. /* Define to 1 if you have the <unistd.h> header file. */
  251. #undef HAVE_UNISTD_H
  252. /* return type of gai_strerror */
  253. #undef IRS_GAISTRERROR_RETURN_T
  254. /* Define to the buffer length type used by getnameinfo(3). */
  255. #undef IRS_GETNAMEINFO_BUFLEN_T
  256. /* Define to the flags type used by getnameinfo(3). */
  257. #undef IRS_GETNAMEINFO_FLAGS_T
  258. /* Define to allow building of objects for dlopen(). */
  259. #undef ISC_DLZ_DLOPEN
  260. /* Defined if extern char *optarg is not declared. */
  261. #undef NEED_OPTARG
  262. /* Define if connect does not honour the permission on the UNIX domain socket.
  263. */
  264. #undef NEED_SECURE_DIRECTORY
  265. /* Define to the address where bug reports for this package should be sent. */
  266. #undef PACKAGE_BUGREPORT
  267. /* Define to the full name of this package. */
  268. #undef PACKAGE_NAME
  269. /* Define to the full name and version of this package. */
  270. #undef PACKAGE_STRING
  271. /* Define to the one symbol short name of this package. */
  272. #undef PACKAGE_TARNAME
  273. /* Define to the home page for this package. */
  274. #undef PACKAGE_URL
  275. /* Define to the version of this package. */
  276. #undef PACKAGE_VERSION
  277. /* Sets which flag to pass to open/fcntl to make non-blocking
  278. (O_NDELAY/O_NONBLOCK). */
  279. #undef PORT_NONBLOCK
  280. /* The size of `void *', as computed by sizeof. */
  281. #undef SIZEOF_VOID_P
  282. /* Define to 1 if you have the ANSI C header files. */
  283. #undef STDC_HEADERS
  284. /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
  285. #undef TIME_WITH_SYS_TIME
  286. /* Defined if you need to use ioctl(FIONBIO) instead a fcntl call to make
  287. non-blocking. */
  288. #undef USE_FIONBIO_IOCTL
  289. /* define if idnkit support is to be included. */
  290. #undef WITH_IDN
  291. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  292. significant byte first (like Motorola and SPARC, unlike Intel). */
  293. #if defined AC_APPLE_UNIVERSAL_BUILD
  294. # if defined __BIG_ENDIAN__
  295. # define WORDS_BIGENDIAN 1
  296. # endif
  297. #else
  298. # ifndef WORDS_BIGENDIAN
  299. # undef WORDS_BIGENDIAN
  300. # endif
  301. #endif
  302. /* Define to empty if `const' does not conform to ANSI C. */
  303. #undef const
  304. /* Define to empty if your compiler does not support "static inline". */
  305. #undef inline
  306. /* Define to `unsigned int' if <sys/types.h> does not define. */
  307. #undef size_t
  308. /* Define to `int' if <sys/types.h> does not define. */
  309. #undef ssize_t
  310. /* Define to `unsigned long' if <sys/types.h> does not define. */
  311. #undef uintptr_t
  312. /* Define to empty if the keyword `volatile' does not work. Warning: valid
  313. code using `volatile' can become incorrect without. Disable with care. */
  314. #undef volatile