diff options
| author | Edin Kadribasic <edink@php.net> | 2003-12-07 00:59:16 +0000 |
|---|---|---|
| committer | Edin Kadribasic <edink@php.net> | 2003-12-07 00:59:16 +0000 |
| commit | 10b53557db79fb6216c04153b5dd294569f6295b (patch) | |
| tree | 9e2d8a73c72cdd67dce0a22e0abe7faa2134ade3 | |
| parent | ee47ad0c2a2b213020ca93b96c383c77027b2e4e (diff) | |
| download | php-git-10b53557db79fb6216c04153b5dd294569f6295b.tar.gz | |
Fixed win32 build (no such include on windows).
| -rw-r--r-- | ext/filepro/filepro.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/filepro/filepro.c b/ext/filepro/filepro.c index b5e9ec986c..1c97541fcc 100644 --- a/ext/filepro/filepro.c +++ b/ext/filepro/filepro.c @@ -34,7 +34,9 @@ #include "safe_mode.h" #include "fopen_wrappers.h" #include <string.h> +#ifndef PHP_WIN32 #include <sys/param.h> +#endif #include <errno.h> #include "php_globals.h" |
