diff options
author | Zeev Suraski <zeev@php.net> | 2003-02-17 13:29:59 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2003-02-17 13:29:59 +0000 |
commit | 4934744b9334b7f0ba31f31830896d2c1f089246 (patch) | |
tree | 68bab5bad35b1d318a6313c7a8cfc22bac4397bd /sapi/isapi/php4isapi.c | |
parent | fb607799cc3aa512136e9c8ec480c043050e5aeb (diff) | |
download | php-git-4934744b9334b7f0ba31f31830896d2c1f089246.tar.gz |
Win32 build improvements
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 62f7b04a02..71090bcc5e 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -17,20 +17,10 @@ +----------------------------------------------------------------------+ */ -#ifdef PHP_WIN32 -# include <winsock2.h> -# include <windows.h> -# include <process.h> -#else -# define __try -# define __except(val) -# define __declspec(foo) -#endif - +#include "php.h" #include <httpext.h> #include <httpfilt.h> #include <httpext.h> -#include "php.h" #include "php_main.h" #include "SAPI.h" #include "php_globals.h" @@ -38,6 +28,15 @@ #include "php_variables.h" #include "php_ini.h" +#ifdef PHP_WIN32 +# include <process.h> +#else +# define __try +# define __except(val) +# define __declspec(foo) +#endif + + #ifdef WITH_ZEUS # include "httpext.h" # include <errno.h> |