From: Anatol Belski Date: Thu, 28 Jan 2016 12:46:34 +0000 (+0100) Subject: add missing headers for SIZE_MAX X-Git-Tag: php-5.5.32~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=686a17893a56a500a3a6a4fd721e8ca29412f6dc;p=php add missing headers for SIZE_MAX --- 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 */