diff options
| author | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-04-06 22:58:43 +0200 |
|---|---|---|
| committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-04-06 22:58:43 +0200 |
| commit | 6e65abbe636f52ba76c2ed6763bb40f9f9bedf15 (patch) | |
| tree | 8063394841c4f031af60ed49f54f58cfe62f8b31 /ConfigureChecks.cmake | |
| parent | bda836d74461b3c06eaeeb906fa6197e5bde42e7 (diff) | |
Fix vsnprintf symbol on older VS2003 compiler
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 d3dec1ab..03b55282 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -39,6 +39,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) |
