1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-01 11:26:52 +03:00

cmake: Check for _strtoui64() on Windows.

This commit is contained in:
Andreas Schneider
2013-07-22 08:44:04 +02:00
parent dbf3cdecda
commit 8ff6a7a850
3 changed files with 17 additions and 13 deletions

View File

@ -103,6 +103,8 @@ check_function_exists(vsnprintf HAVE_VSNPRINTF)
check_function_exists(snprintf HAVE_SNPRINTF)
if (WIN32)
check_function_exists(_strtoui64 HAVE__STRTOUI64)
check_function_exists(_vsnprintf_s HAVE__VSNPRINTF_S)
check_function_exists(_vsnprintf HAVE__VSNPRINTF)
check_function_exists(_snprintf HAVE__SNPRINTF)