From 6cc7a5784eed6fe24e9fa4982d0c01cc463d8355 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Tue, 12 Nov 2013 12:10:53 +0000 Subject: [PATCH] windows --- phpdbg.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/phpdbg.h b/phpdbg.h index 34b2e56a38..83b93fe912 100644 --- a/phpdbg.h +++ b/phpdbg.h @@ -30,7 +30,17 @@ #include "zend_ini_scanner.h" #include "zend_stream.h" #include "SAPI.h" -#include +#include +#include +#if defined(_WIN32) && !defined(__MINGW32__) +# include +# include "config.w32.h" +#else +# include "php_config.h" +#endif +#ifndef O_BINARY +# define O_BINARY 0 +#endif #include "php_main.h" #ifdef ZTS -- 2.50.1