edink Sat Dec 6 19:59:17 2003 EDT Modified files: /php-src/ext/filepro filepro.c Log: Fixed win32 build (no such include on windows). Index: php-src/ext/filepro/filepro.c diff -u php-src/ext/filepro/filepro.c:1.52 php-src/ext/filepro/filepro.c:1.53 --- php-src/ext/filepro/filepro.c:1.52 Thu Aug 28 17:00:14 2003 +++ php-src/ext/filepro/filepro.c Sat Dec 6 19:59:16 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: filepro.c,v 1.52 2003/08/28 21:00:14 andrey Exp $ */ +/* $Id: filepro.c,v 1.53 2003/12/07 00:59:16 edink Exp $ */ /* filePro 4.x support developed by Chad Robinson, [EMAIL PROTECTED] @@ -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"
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php