From fa7d321cf7103f0f88d8759cb6c938d1fda2f094 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 6 Nov 2016 14:57:13 +0000 Subject: [PATCH] [MKISOFS] - Fix build with VS2010 and 2012 CORE-11988 svn path=/trunk/; revision=73151 --- reactos/sdk/tools/mkisofs/reactos/xconfig.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reactos/sdk/tools/mkisofs/reactos/xconfig.h b/reactos/sdk/tools/mkisofs/reactos/xconfig.h index dcd8ceafc02..e250382e702 100644 --- a/reactos/sdk/tools/mkisofs/reactos/xconfig.h +++ b/reactos/sdk/tools/mkisofs/reactos/xconfig.h @@ -35,7 +35,10 @@ #define HAVE_IO_H 1 #endif +#if !defined(_MSC_VER) || _MSC_VER >= 1800 #define HAVE_INTTYPES_H 1 +#endif + #define HAVE_STDINT_H 1 #ifndef _WIN32 @@ -77,12 +80,16 @@ #endif #define HAVE_TIME 1 +#if !defined(_MSC_VER) || _MSC_VER >= 1800 #define HAVE_VA_COPY 1 +#endif #define HAVE_ECVT 1 #define HAVE_FCVT 1 #define HAVE_GCVT 1 +#if !defined(_MSC_VER) || _MSC_VER >= 1800 #define HAVE_C99_ISINF 1 #define HAVE_C99_ISNAN 1 +#endif #define HAVE_SNPRINTF 1 #if defined(_MSC_VER) && _MSC_VER < 1900