From: Ralf Lang Date: Mon, 22 Jul 2013 19:26:38 +0000 (+0200) Subject: make this work in vc11 too X-Git-Tag: php-5.6.0alpha1~326^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=679fa1fc6854dce7d5d0ff7def65a5bbdbb18094;p=php make this work in vc11 too --- diff --git a/main/SAPI.h b/main/SAPI.h index 6d5434d141..6fc60c8865 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -27,6 +27,7 @@ #include "zend_operators.h" #ifdef PHP_WIN32 #include "win95nt.h" +#include "win32/php_stdint.h" #endif #include diff --git a/main/rfc1867.c b/main/rfc1867.c index d3adf47114..8460929108 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -34,6 +34,10 @@ #include "rfc1867.h" #include "ext/standard/php_string.h" +#if defined(_MSC_VER) +# define atoll(s) _atoi64(s) +#endif + #define DEBUG_FILE_UPLOAD ZEND_DEBUG static int dummy_encoding_translation(TSRMLS_D)