Doing diffs in .: --- ./xlators/storage/posix/src/posix.c.~1~ 2007-05-05 09:40:28.000000000 -0700 +++ ./xlators/storage/posix/src/posix.c 2007-06-01 01:32:04.000000000 -0700 @@ -26,6 +26,10 @@ #include +#ifndef O_LARGEFILE +#define O_LARGEFILE 0 +#endif + #define MAKE_REAL_PATH(var, this, path) do { \ int base_len = ((struct posix_private *)this->private)->base_path_length; \ var = alloca (strlen (path) + base_len + 2); \ --------------