From 686a17893a56a500a3a6a4fd721e8ca29412f6dc Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Thu, 28 Jan 2016 13:46:34 +0100 Subject: [PATCH] add missing headers for SIZE_MAX --- ext/standard/iptc.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ext/standard/iptc.c b/ext/standard/iptc.c index 6f8aa5dc3e..41a924b4b2 100644 --- a/ext/standard/iptc.c +++ b/ext/standard/iptc.c @@ -38,6 +38,15 @@ #include +#ifdef PHP_WIN32 +# include "win32/php_stdint.h" +#else +# if HAVE_INTTYPES_H +# include +# elif HAVE_STDINT_H +# include +# endif +#endif /* some defines for the different JPEG block types */ #define M_SOF0 0xC0 /* Start Of Frame N */ -- 2.50.1