diff options
author | Pierre Joye <pajoye@php.net> | 2010-05-03 19:51:59 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-05-03 19:51:59 +0000 |
commit | 11040eae16e5090f240a533813cb6490684a0604 (patch) | |
tree | a4689c283459bf7beb8e818863abcf573c7d9ae3 /sapi/apache2handler | |
parent | 6202b46f2a7216a3ff1fdf1fa827941ed8cb683d (diff) | |
download | php-git-11040eae16e5090f240a533813cb6490684a0604.tar.gz |
- revert fix for #51723 in 5.2, vc6 does not support strtoi64, use builtin functioon in 5.3 (trunk is vc9+ only)
Diffstat (limited to 'sapi/apache2handler')
-rw-r--r-- | sapi/apache2handler/sapi_apache2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 765132d05b..f5656bdc4f 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -53,6 +53,10 @@ #include "php_apache.h" +#if _MSC_VER <= 1300 +# include "win32/php_strtoi64.h" +#endif + /* UnixWare and Netware define shutdown to _shutdown, which causes problems later * on when using a structure member named shutdown. Since this source * file does not use the system call shutdown, it is safe to #undef it.K |