felipe Sat Mar 15 10:32:32 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/main/streams memory.c Log: MFB: Fixed bug #44440 (st_blocks undefined under BeOS) http://cvs.php.net/viewvc.cgi/php-src/main/streams/memory.c?r1=1.8.2.6.2.17.2.1&r2=1.8.2.6.2.17.2.2&diff_format=u Index: php-src/main/streams/memory.c diff -u php-src/main/streams/memory.c:1.8.2.6.2.17.2.1 php-src/main/streams/memory.c:1.8.2.6.2.17.2.2 --- php-src/main/streams/memory.c:1.8.2.6.2.17.2.1 Mon Dec 31 07:17:17 2007 +++ php-src/main/streams/memory.c Sat Mar 15 10:32:32 2008 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: memory.c,v 1.8.2.6.2.17.2.1 2007/12/31 07:17:17 sebastian Exp $ */ +/* $Id: memory.c,v 1.8.2.6.2.17.2.2 2008/03/15 10:32:32 felipe Exp $ */ #define _GNU_SOURCE #include "php.h" @@ -234,6 +234,9 @@ #ifndef PHP_WIN32 ssb->sb.st_blksize = -1; +#endif + +#if !defined(PHP_WIN32) && !defined(__BEOS__) ssb->sb.st_blocks = -1; #endif
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php