From 9498cf6194496a1dd6b400e3e9a85ff005dc3dcd Mon Sep 17 00:00:00 2001 From: Anatoliy Belsky Date: Tue, 15 Jan 2013 22:36:29 +0100 Subject: [PATCH] fixed build --- ext/standard/string.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index 58b5483651..42bf198175 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -23,7 +23,11 @@ /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */ #include -#include +#ifdef PHP_WIN32 +# include "win32/php_stdint.h" +#else +# include +#endif #include "php.h" #include "php_rand.h" #include "php_string.h" -- 2.50.1