diff options
author | Andreas Schneider <mail@cynapses.org> | 2010-05-10 15:24:52 +0200 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2010-05-10 15:24:52 +0200 |
commit | 144126789c0f7a75ef025c37f5e6e3e01be6dad8 (patch) | |
tree | 9effcb7b0b08b623843290e4936ae13d5231c82f /ConfigureChecks.cmake | |
parent | 8dcfc9849e94f15b42118e0929b6667028291138 (diff) | |
download | libssh-144126789c0f7a75ef025c37f5e6e3e01be6dad8.tar.gz libssh-144126789c0f7a75ef025c37f5e6e3e01be6dad8.tar.xz libssh-144126789c0f7a75ef025c37f5e6e3e01be6dad8.zip |
Added configure checks for vsnprintf and _vsnprintf.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index fc755fbc..4789365a 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -35,6 +35,11 @@ if (WIN32) set(HAVE_GETHOSTBYNAME TRUE) endif (HAVE_WSPIAPI_H OR HAVE_WS2TCPIP_H) + check_function_exists(vsnprintf HAVE_VSNPRINTF) + if(NOT HAVE_VSNPRINTF) + check_function_exists(_vsnprintf HAVE__VSNPRINTF) + endif(NOT HAVE_VSNPRINTF) + set(HAVE_SELECT TRUE) endif (WIN32) |