diff options
author | Frank M. Kromann <fmk@php.net> | 2004-08-21 03:09:45 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2004-08-21 03:09:45 +0000 |
commit | e398e6b7d67c5342c5c9fe02b4a4ee8e043a9563 (patch) | |
tree | 8d345e2e37799ac5f0b8f86fd87a06985d31740d /main/SAPI.h | |
parent | 20db6b2dcb974a9b996e1d2fa54f9df15cadab7b (diff) | |
download | php-git-e398e6b7d67c5342c5c9fe02b4a4ee8e043a9563.tar.gz |
Fix win32 compilation. Missing uid_t and gid_t definitions.
Diffstat (limited to 'main/SAPI.h')
-rw-r--r-- | main/SAPI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index 32e69d2e8e..11965fccf9 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -24,6 +24,9 @@ #include "zend.h" #include "zend_llist.h" #include "zend_operators.h" +#ifdef PHP_WIN32 +#include "win95nt.h" +#endif #include <sys/stat.h> #define SAPI_OPTION_NO_CHDIR 1 |