From: Anatol Belski Date: Wed, 2 Jul 2014 09:11:39 +0000 (+0200) Subject: backported the VC12 fix for ARG_MAX X-Git-Tag: php-5.5.15RC1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49e175be422191c114f3d9a18f0e3b9c5927452e;p=php backported the VC12 fix for ARG_MAX --- diff --git a/win32/glob.c b/win32/glob.c index 1aeac78fda..8111daba1c 100644 --- a/win32/glob.c +++ b/win32/glob.c @@ -61,9 +61,16 @@ * Number of matches in the current invocation of glob. */ #ifdef PHP_WIN32 -#define _POSIX_ -#include -#undef _POSIX_ +#if _MSC_VER < 1800 +# define _POSIX_ +# include +# undef _POSIX_ +#else +/* Visual Studio 2013 removed all the _POSIX_ defines, but we depend on some */ +# ifndef ARG_MAX +# define ARG_MAX 14500 +# endif +#endif #ifndef S_ISDIR #define S_ISDIR(m) (((m) & _S_IFDIR) == _S_IFDIR) #endif