summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2010-05-10 15:27:40 +0200
committerAndreas Schneider <mail@cynapses.org>2010-05-10 15:53:46 +0200
commit6fd8de337628526ad841130e02b42fa3e1675c4e (patch)
treef5f811d416363f5066bbca89738003f9d59eceff /ConfigureChecks.cmake
parent5fe99f8b094e822f1d6322e71d4185510aa9ea59 (diff)
Added configure checks for _vsnprintf_s and strncpy.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake7
1 files changed, 5 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 03b55282..f4ef836f 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -41,9 +41,12 @@ if (WIN32)
check_function_exists(vsnprintf HAVE_VSNPRINTF)
if(NOT HAVE_VSNPRINTF)
- check_function_exists(_vsnprintf HAVE__VSNPRINTF)
+ check_function_exists(_vsnprintf_s HAVE__VSNPRINTF_S)
+ check_function_exists(_vsnprintf HAVE__VSNPRINTF)
endif(NOT HAVE_VSNPRINTF)
-
+
+ check_function_exists(strncpy HAVE_STRNCPY)
+
set(HAVE_SELECT TRUE)
endif (WIN32)