felipe Sat Mar 15 10:34:12 2008 UTC Modified files: /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.36&r2=1.37&diff_format=u Index: php-src/main/streams/memory.c diff -u php-src/main/streams/memory.c:1.36 php-src/main/streams/memory.c:1.37 --- php-src/main/streams/memory.c:1.36 Mon Dec 31 07:12:18 2007 +++ php-src/main/streams/memory.c Sat Mar 15 10:34:12 2008 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: memory.c,v 1.36 2007/12/31 07:12:18 sebastian Exp $ */ +/* $Id: memory.c,v 1.37 2008/03/15 10:34:12 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