aboutsummaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2013-07-22 08:44:04 +0200
committerAndreas Schneider <asn@cryptomilk.org>2013-07-22 13:01:36 +0200
commit8ff6a7a8502a81944ce422c09910e9eb2bed878a (patch)
tree9b773c64b5ae97e774b51ad74f8c98ba5059f1bc /ConfigureChecks.cmake
parentdbf3cdecda66e9784bcd9403881922515ce86147 (diff)
downloadlibssh-8ff6a7a8502a81944ce422c09910e9eb2bed878a.tar.gz
libssh-8ff6a7a8502a81944ce422c09910e9eb2bed878a.tar.xz
libssh-8ff6a7a8502a81944ce422c09910e9eb2bed878a.zip
cmake: Check for _strtoui64() on Windows.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index f73fc567..f602e11e 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -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)