From 5e4d17231247a6df8324d6f0f6b7247edc835b7c Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Wed, 22 Feb 2017 14:11:11 +0100 Subject: [PATCH] fixed GH #1604: pcre_internal.h HAVE_STDINT_H usage changed from 1.7.7 to 1.7.8 breaking the build on older MSVC --- Foundation/src/pcre_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Foundation/src/pcre_internal.h b/Foundation/src/pcre_internal.h index 2923b29f8..a02d9d703 100644 --- a/Foundation/src/pcre_internal.h +++ b/Foundation/src/pcre_internal.h @@ -229,9 +229,9 @@ stdint.h is available, include it; it may define INT64_MAX. Systems that do not have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set by "configure". */ -#if defined HAVE_STDINT_H +#if HAVE_STDINT_H #include -#elif defined HAVE_INTTYPES_H +#elif HAVE_INTTYPES_H #include #endif