Browse Source

Fix detection of netinet/tcp.h on Cygwin.

pull/2733/head
DDoSolitary 4 years ago
parent
commit
54fa88476c
No known key found for this signature in database GPG Key ID: 90A79E1B71BC0CB1
1 changed files with 5 additions and 1 deletions
  1. 6
      cmake/configure.cmake

6
cmake/configure.cmake

@ -46,7 +46,11 @@ check_function_exists(memset HAVE_MEMSET)
check_include_files(netdb.h HAVE_NETDB_H) check_include_files(netdb.h HAVE_NETDB_H)
check_include_files(netinet/in.h HAVE_NETINET_IN_H) check_include_files(netinet/in.h HAVE_NETINET_IN_H)
check_include_files(netinet/tcp.h HAVE_NETINET_TCP_H)
if (CYGWIN)
check_include_files("sys/types.h;netinet/tcp.h" HAVE_NETINET_TCP_H)
else ()
check_include_files(netinet/tcp.h HAVE_NETINET_TCP_H)
endif ()
check_include_files(linux/tcp.h HAVE_LINUX_TCP_H) check_include_files(linux/tcp.h HAVE_LINUX_TCP_H)
check_include_files(net/if.h HAVE_NET_IF_H) check_include_files(net/if.h HAVE_NET_IF_H)
check_include_files(pcre.h HAVE_PCRE_H) check_include_files(pcre.h HAVE_PCRE_H)

Loading…
Cancel
Save