Fix compile error with Visual Studio 2012

The standard header stdbool.h is not available
with old Visual Studio compilers
This commit is contained in:
Jose 2017-08-23 11:33:12 +02:00 committed by Sebastian Pipping
parent e0b290eb3d
commit b4b89c2ab0
2 changed files with 22 additions and 4 deletions

View file

@ -31,9 +31,18 @@
*/
#include <stddef.h>
#include <stdbool.h>
#include <string.h> // memcpy
#if defined(_MSC_VER) && (_MSC_VER <= 1700)
/* for vs2012/11.0/1700 and earlier Visual Studio compilers */
# define bool int
# define false 0
# define true 1
#else
# include <stdbool.h>
#endif
#ifdef _WIN32
#include "winconfig.h"
#else

View file

@ -41,11 +41,20 @@
#include <stdint.h>
#include <stddef.h> /* ptrdiff_t */
#include <ctype.h>
#ifndef __cplusplus
# include <stdbool.h>
#endif
#include <limits.h>
#if ! defined(__cplusplus)
# if defined(_MSC_VER) && (_MSC_VER <= 1700)
/* for vs2012/11.0/1700 and earlier Visual Studio compilers */
# define bool int
# define false 0
# define true 1
# else
# include <stdbool.h>
# endif
#endif
#include "expat.h"
#include "chardata.h"
#include "internal.h" /* for UNUSED_P only */