mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-03 05:24:02 +01:00
Fix issue with OSX 10.10
This commit is contained in:
parent
dfe63e9e73
commit
0783022d6d
@ -101,8 +101,17 @@ check_function_exists(snprintf HAVE_SNPRINTF)
|
||||
check_function_exists(poll HAVE_POLL)
|
||||
check_function_exists(select HAVE_SELECT)
|
||||
check_function_exists(getaddrinfo HAVE_GETADDRINFO)
|
||||
check_function_exists(ntohll HAVE_NTOHLL)
|
||||
check_function_exists(htonll HAVE_HTONLL)
|
||||
|
||||
check_symbol_exists(ntohll sys/types.h HAVE_NTOHLL)
|
||||
check_symbol_exists(htonll sys/types.h HAVE_HTONLL)
|
||||
|
||||
if (NOT HAVE_NTOHLL)
|
||||
check_function_exists(ntohll HAVE_NTOHLL)
|
||||
endif (NOT HAVE_NTOHLL)
|
||||
if (NOT HAVE_HTONLL)
|
||||
check_function_exists(ntohll HAVE_HTONLL)
|
||||
endif (NOT HAVE_HTONLL)
|
||||
|
||||
|
||||
if (WIN32)
|
||||
check_function_exists(_strtoui64 HAVE__STRTOUI64)
|
||||
|
Loading…
Reference in New Issue
Block a user