aboutsummaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorpouete <pouete@pouete.net>2015-12-30 12:19:36 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2015-12-30 19:51:11 +0100
commitb3ad6a015b8fd7668b55d11c1bc3061c2fc67572 (patch)
tree8bcce7fbbd2d6aadfadd709dba9908bc5475d61b /ConfigureChecks.cmake
parentbe36586d74367f562937da041ce6a5615d647f3b (diff)
downloadlibssh-b3ad6a015b8fd7668b55d11c1bc3061c2fc67572.tar.gz
libssh-b3ad6a015b8fd7668b55d11c1bc3061c2fc67572.tar.xz
libssh-b3ad6a015b8fd7668b55d11c1bc3061c2fc67572.zip
cmake: use check_symbol for (v)snprintf
Updated how snprintf and vsnprintf are discovered by cmake. Visual studio 2015 now include it in the file stdio.h. More information here : https://msdn.microsoft.com/en-us/library/bb531344.aspx Reviewed-By: Aris Adamantiadis <aris@0xbadc0de.be>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index b839b715..9109d8fc 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -120,8 +120,9 @@ endif (NOT WITH_GCRYPT)
check_function_exists(isblank HAVE_ISBLANK)
check_function_exists(strncpy HAVE_STRNCPY)
-check_function_exists(vsnprintf HAVE_VSNPRINTF)
-check_function_exists(snprintf HAVE_SNPRINTF)
+
+check_symbol_exists(vsnprintf "stdio.h" HAVE_VSNPRINTF)
+check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
if (WIN32)
check_function_exists(_strtoui64 HAVE__STRTOUI64)