Commit 080c919b7924052ed240fca4097f2f59db380d32

Sam Lantinga 2013-10-13T19:51:58

Fixed function feature test for Visual Studio 2012 norfanin Fixes the version check for some functions that are only present with the MSVC 2013 CRT libraries. I did my testing wrong and failed to see that 2012 doesn't have these functions. Microsoft implemented them in their upcoming 2013 version, though. The attached patch changes it to the check for the next version. I also removed the HAVE_ITOA because that would require linking with oldnames.lib and it's easier to just let the SDL implementation take over.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/include/SDL_config_windows.h b/include/SDL_config_windows.h
index 7307763..4d5c7c2 100644
--- a/include/SDL_config_windows.h
+++ b/include/SDL_config_windows.h
@@ -128,8 +128,7 @@ typedef unsigned int uintptr_t;
 #define HAVE_SIN 1
 #define HAVE_SINF 1
 #define HAVE_SQRT 1
-#if _MSC_VER >= 1700
-#define HAVE_ITOA 1
+#if _MSC_VER >= 1800
 #define HAVE_STRTOLL 1
 #define HAVE_SSCANF 1
 #define HAVE_COPYSIGN 1