X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=CMake%2F_Include.cmake;h=6f9a092bf641f40e67651db01c86f85e7abda741;hb=aeac01630eed825d8a624e7fd7c107d47bb2e40c;hp=6a5598d9235edae1ef476d3aa609fdd797ce15d8;hpb=01c5e0ed8d3d9c72ea192792d1c49a50e756d635;p=awesomized%2Flibmemcached diff --git a/CMake/_Include.cmake b/CMake/_Include.cmake index 6a5598d9..6f9a092b 100644 --- a/CMake/_Include.cmake +++ b/CMake/_Include.cmake @@ -115,24 +115,24 @@ configure_set(HAVE_FNV64_HASH ${ENABLE_HASH_FNV64}) configure_set(HAVE_MURMUR_HASH ${ENABLE_HASH_MURMUR}) configure_set(HAVE_HSIEH_HASH ${ENABLE_HASH_HSIEH}) -# most of the following checks are due to mingw or msvc; see gnulib +check_include(alloca.h) check_include(arpa/inet.h) check_include(dlfcn.h) +check_include(getopt.h) +check_include(libgen.h) check_include(netdb.h) check_include(poll.h) check_include(strings.h) +check_include(sys/poll.h) check_include(sys/socket.h) check_include(sys/time.h) check_include(sys/un.h) check_include(unistd.h) -if(WIN32) - check_include(io.h) - check_include(winsock2.h) - check_include(ws2tcpip.h) -endif() - check_type(in_port_t netinet/in.h) +check_type(pid_t sys/types.h) +check_type(ssize_t sys/types.h) +check_type("struct msghdr" sys/socket.h) check_cxx_symbol(abi::__cxa_demangle cxxabi.h) check_symbol(fcntl fcntl.h) @@ -142,6 +142,7 @@ check_symbol(MSG_MORE sys/socket.h) check_symbol(MSG_NOSIGNAL sys/socket.h) check_symbol(SO_RCVTIMEO sys/socket.h) check_symbol(SO_SNDTIMEO sys/socket.h) +check_symbol(sendmsg sys/socket.h) check_symbol(setenv stdlib.h) check_symbol(strerror_r string.h) check_c_source(" @@ -152,3 +153,11 @@ check_c_source(" }" HAVE_STRERROR_R_CHAR_P ) + +if(WIN32) + check_include(io.h) + check_include(winsock2.h) + check_include(ws2tcpip.h) + + check_symbol(htonll winsock2.h) +endif()