|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include(CheckCSourceCompiles) |
|
|
include(CheckCSourceRuns) |
|
|
include(CheckTypeSize) |
|
|
|
|
|
macro(add_header_include _check _header) |
|
|
if(${_check}) |
|
|
set(_source_epilogue "${_source_epilogue} |
|
|
#include <${_header}>") |
|
|
endif() |
|
|
endmacro() |
|
|
|
|
|
set(_cmake_try_compile_target_type_save ${CMAKE_TRY_COMPILE_TARGET_TYPE}) |
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY") |
|
|
|
|
|
if(NOT DEFINED HAVE_STRUCT_SOCKADDR_STORAGE) |
|
|
cmake_push_check_state() |
|
|
unset(CMAKE_EXTRA_INCLUDE_FILES) |
|
|
if(WIN32) |
|
|
set(CMAKE_EXTRA_INCLUDE_FILES "winsock2.h") |
|
|
set(CMAKE_REQUIRED_LIBRARIES "ws2_32") |
|
|
elseif(HAVE_SYS_SOCKET_H) |
|
|
set(CMAKE_EXTRA_INCLUDE_FILES "sys/socket.h") |
|
|
endif() |
|
|
check_type_size("struct sockaddr_storage" SIZEOF_STRUCT_SOCKADDR_STORAGE) |
|
|
set(HAVE_STRUCT_SOCKADDR_STORAGE ${HAVE_SIZEOF_STRUCT_SOCKADDR_STORAGE}) |
|
|
cmake_pop_check_state() |
|
|
endif() |
|
|
|
|
|
if(NOT WIN32) |
|
|
set(_source_epilogue "#undef inline") |
|
|
add_header_include(HAVE_SYS_TYPES_H "sys/types.h") |
|
|
add_header_include(HAVE_SYS_SOCKET_H "sys/socket.h") |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
int main(void) |
|
|
{ |
|
|
int flag = MSG_NOSIGNAL; |
|
|
(void)flag; |
|
|
return 0; |
|
|
}" HAVE_MSG_NOSIGNAL) |
|
|
endif() |
|
|
|
|
|
set(_source_epilogue "#undef inline") |
|
|
add_header_include(HAVE_SYS_TIME_H "sys/time.h") |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
#include <time.h> |
|
|
int main(void) |
|
|
{ |
|
|
struct timeval ts; |
|
|
ts.tv_sec = 0; |
|
|
ts.tv_usec = 0; |
|
|
(void)ts; |
|
|
return 0; |
|
|
}" HAVE_STRUCT_TIMEVAL) |
|
|
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE ${_cmake_try_compile_target_type_save}) |
|
|
unset(_cmake_try_compile_target_type_save) |
|
|
|
|
|
|
|
|
|
|
|
if(WIN32) |
|
|
set(HAVE_GETADDRINFO_THREADSAFE ${HAVE_GETADDRINFO}) |
|
|
elseif(NOT HAVE_GETADDRINFO) |
|
|
set(HAVE_GETADDRINFO_THREADSAFE FALSE) |
|
|
elseif(APPLE OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "AIX" OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "HP-UX" OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD" OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR |
|
|
CMAKE_SYSTEM_NAME STREQUAL "SunOS") |
|
|
set(HAVE_GETADDRINFO_THREADSAFE TRUE) |
|
|
elseif(BSD OR CMAKE_SYSTEM_NAME MATCHES "BSD") |
|
|
set(HAVE_GETADDRINFO_THREADSAFE FALSE) |
|
|
endif() |
|
|
|
|
|
if(NOT DEFINED HAVE_GETADDRINFO_THREADSAFE) |
|
|
set(_source_epilogue "#undef inline") |
|
|
add_header_include(HAVE_SYS_SOCKET_H "sys/socket.h") |
|
|
add_header_include(HAVE_SYS_TIME_H "sys/time.h") |
|
|
add_header_include(HAVE_NETDB_H "netdb.h") |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
int main(void) |
|
|
{ |
|
|
#ifdef h_errno |
|
|
return 0; |
|
|
#else |
|
|
#error force compilation error |
|
|
#endif |
|
|
}" HAVE_H_ERRNO) |
|
|
|
|
|
if(NOT HAVE_H_ERRNO) |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
int main(void) |
|
|
{ |
|
|
h_errno = 2; |
|
|
return h_errno != 0 ? 1 : 0; |
|
|
}" HAVE_H_ERRNO_ASSIGNABLE) |
|
|
|
|
|
if(NOT HAVE_H_ERRNO_ASSIGNABLE) |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
int main(void) |
|
|
{ |
|
|
#if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200809L) |
|
|
return 0; |
|
|
#elif defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 700) |
|
|
return 0; |
|
|
#else |
|
|
#error force compilation error |
|
|
#endif |
|
|
}" HAVE_H_ERRNO_SBS_ISSUE_7) |
|
|
endif() |
|
|
endif() |
|
|
|
|
|
if(HAVE_H_ERRNO OR HAVE_H_ERRNO_ASSIGNABLE OR HAVE_H_ERRNO_SBS_ISSUE_7) |
|
|
set(HAVE_GETADDRINFO_THREADSAFE TRUE) |
|
|
endif() |
|
|
endif() |
|
|
|
|
|
if(NOT WIN32 AND NOT DEFINED HAVE_CLOCK_GETTIME_MONOTONIC_RAW) |
|
|
set(_source_epilogue "#undef inline") |
|
|
add_header_include(HAVE_SYS_TYPES_H "sys/types.h") |
|
|
add_header_include(HAVE_SYS_TIME_H "sys/time.h") |
|
|
check_c_source_compiles("${_source_epilogue} |
|
|
#include <time.h> |
|
|
int main(void) |
|
|
{ |
|
|
struct timespec ts; |
|
|
(void)clock_gettime(CLOCK_MONOTONIC_RAW, &ts); |
|
|
return 0; |
|
|
}" HAVE_CLOCK_GETTIME_MONOTONIC_RAW) |
|
|
endif() |
|
|
|
|
|
unset(_source_epilogue) |
|
|
|