mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-21 08:50:32 -05:00
84 lines
2.2 KiB
C
84 lines
2.2 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
/*! \file */
|
|
|
|
/***
|
|
*** This file is not to be included by any public header files, because
|
|
*** it does not get installed.
|
|
***/
|
|
@TOP@
|
|
|
|
/** define if your system needs pthread_init() before using pthreads */
|
|
#undef NEED_PTHREAD_INIT
|
|
|
|
/** define if your system has sigwait() */
|
|
#undef HAVE_SIGWAIT
|
|
|
|
/** define if sigwait() is the UnixWare flavor */
|
|
#undef HAVE_UNIXWARE_SIGWAIT
|
|
|
|
/** define on Solaris to get sigwait() to work using pthreads semantics */
|
|
#undef _POSIX_PTHREAD_SEMANTICS
|
|
|
|
/** define if LinuxThreads is in use */
|
|
#undef HAVE_LINUXTHREADS
|
|
|
|
/** define if sysconf() is available */
|
|
#undef HAVE_SYSCONF
|
|
|
|
/** define if sysctlbyname() is available */
|
|
#undef HAVE_SYSCTLBYNAME
|
|
|
|
/** define if catgets() is available */
|
|
#undef HAVE_CATGETS
|
|
|
|
/** define if getifaddrs() exists */
|
|
#undef HAVE_GETIFADDRS
|
|
|
|
/** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
|
|
#undef HAVE_IFLIST_SYSCTL
|
|
|
|
/** define if tzset() is available */
|
|
#undef HAVE_TZSET
|
|
|
|
/**
|
|
* define if pthread_setconcurrency() should be called to tell the
|
|
* OS how many threads we might want to run.
|
|
*/
|
|
#undef CALL_PTHREAD_SETCONCURRENCY
|
|
|
|
/** define if flockfile() is available */
|
|
#undef HAVE_FLOCKFILE
|
|
|
|
/** define if getc_unlocked() is available */
|
|
#undef HAVE_GETCUNLOCKED
|
|
|
|
/** define if the system has a random number generating device */
|
|
#undef PATH_RANDOMDEV
|
|
|
|
/** define if pthread_attr_getstacksize() is available */
|
|
#undef HAVE_PTHREAD_ATTR_GETSTACKSIZE
|
|
|
|
/** define if pthread_attr_setstacksize() is available */
|
|
#undef HAVE_PTHREAD_ATTR_SETSTACKSIZE
|
|
|
|
/** define if you have strerror in the C library. */
|
|
#undef HAVE_STRERROR
|
|
|
|
/* Define to the length type used by the socket API (socklen_t, size_t, int). */
|
|
#undef ISC_SOCKADDR_LEN_T
|
|
|
|
/* Define if threads need PTHREAD_SCOPE_SYSTEM */
|
|
#undef NEED_PTHREAD_SCOPE_SYSTEM
|
|
|
|
/* Define to 1 if you have the uname library function. */
|
|
#undef HAVE_UNAME
|