From 6fd8de337628526ad841130e02b42fa3e1675c4e Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 10 May 2010 15:27:40 +0200 Subject: [PATCH] Added configure checks for _vsnprintf_s and strncpy. --- ConfigureChecks.cmake | 7 +++++-- config.h.cmake | 6 ++++++ 2 files changed, 11 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) diff --git a/config.h.cmake b/config.h.cmake index 6aaab2f2..4b96e28c 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -43,6 +43,12 @@ /* Define to 1 if you have the `_vsnprintf' function. */ #cmakedefine HAVE__VSNPRINTF +/* Define to 1 if you have the `_vsnprintf_s' function. */ +#cmakedefine HAVE__VSNPRINTF_S + +/* Define to 1 if you have the `strncpy' function. */ +#cmakedefine HAVE_STRNCPY + /* Define to 1 if you have the `cfmakeraw' function. */ #cmakedefine HAVE_CFMAKERAW 1