]> granicus.if.org Git - php/commitdiff
- revert fix for #51723 in 5.2, vc6 does not support strtoi64, use builtin functioon...
authorPierre Joye <pajoye@php.net>
Mon, 3 May 2010 19:51:59 +0000 (19:51 +0000)
committerPierre Joye <pajoye@php.net>
Mon, 3 May 2010 19:51:59 +0000 (19:51 +0000)
sapi/apache2handler/sapi_apache2.c

index 765132d05b759283dc893870fc08808ba4c1d0cc..f5656bdc4ffd34f47c0644b0f49f6b55c9e191dc 100644 (file)
 
 #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