jpayne@69: #ifndef __CARES_BUILD_H jpayne@69: #define __CARES_BUILD_H jpayne@69: /* jpayne@69: * Copyright (C) The c-ares project and its contributors jpayne@69: * SPDX-License-Identifier: MIT jpayne@69: */ jpayne@69: jpayne@69: #define CARES_TYPEOF_ARES_SOCKLEN_T socklen_t jpayne@69: #define CARES_TYPEOF_ARES_SSIZE_T ssize_t jpayne@69: jpayne@69: /* Prefix names with CARES_ to make sure they don't conflict with other config.h jpayne@69: * files. We need to include some dependent headers that may be system specific jpayne@69: * for C-Ares */ jpayne@69: #define CARES_HAVE_SYS_TYPES_H jpayne@69: #define CARES_HAVE_SYS_SOCKET_H jpayne@69: #define CARES_HAVE_SYS_SELECT_H jpayne@69: /* #undef CARES_HAVE_WINDOWS_H */ jpayne@69: /* #undef CARES_HAVE_WS2TCPIP_H */ jpayne@69: /* #undef CARES_HAVE_WINSOCK2_H */ jpayne@69: #define CARES_HAVE_ARPA_NAMESER_H jpayne@69: #define CARES_HAVE_ARPA_NAMESER_COMPAT_H jpayne@69: jpayne@69: #ifdef CARES_HAVE_SYS_TYPES_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #ifdef CARES_HAVE_SYS_SOCKET_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #ifdef CARES_HAVE_SYS_SELECT_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #ifdef CARES_HAVE_WINSOCK2_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #ifdef CARES_HAVE_WS2TCPIP_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #ifdef CARES_HAVE_WINDOWS_H jpayne@69: # include jpayne@69: #endif jpayne@69: jpayne@69: #endif /* __CARES_BUILD_H */