From bc11545a1b5c22fe74fc954e26e8a8e9d7cfa39e Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Tue, 13 Apr 2010 10:15:29 -0400 Subject: [PATCH] Visual Studio 2010 includes stdint.h Use the builtin version instead of defining the types ourselves. --- pixman/pixman.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pixman/pixman.h b/pixman/pixman.h index 85fcc8c..964d04a 100644 --- a/pixman/pixman.h +++ b/pixman/pixman.h @@ -89,7 +89,8 @@ PIXMAN_BEGIN_DECLS #if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || defined (_sgi) || defined (__sun) || defined (sun) || defined (__digital__) || defined (__HP_cc) # include -#elif defined (_MSC_VER) +/* VS 2010 (_MSC_VER 1600) has stdint.h */ +#elif defined (_MSC_VER) && _MSC_VER < 1600 typedef __int8 int8_t; typedef unsigned __int8 uint8_t; typedef __int16 int16_t; -- 2.7.4