From e4393c59cb59b7ff31b239fd8048d36c5b8fc4e2 Mon Sep 17 00:00:00 2001 From: Francois Cartegnie Date: Wed, 14 Apr 2010 16:53:17 +0200 Subject: [PATCH] Don't use solaris incompatible fstatfs(fd, struct, int, int) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- modules/access/file.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/access/file.c b/modules/access/file.c index e20a1a6554..b96f60bb92 100644 --- a/modules/access/file.c +++ b/modules/access/file.c @@ -39,6 +39,9 @@ #ifdef HAVE_SYS_STAT_H # include #endif +#if defined(HAVE_FSTATFS) && defined(__SunOS) +# undef HAVE_FSTATFS +#endif #ifdef HAVE_FCNTL_H # include #endif -- 2.39.2