From bff8dfea1c10807b41d55b3be2d1d2067a9c379d Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 21 May 2005 19:42:34 +0000 Subject: [PATCH] (svn r2356) Make check if statvfs() is availible a bit more sensible --- unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix.c b/unix.c index c7487f34dd..b4c3538786 100644 --- a/unix.c +++ b/unix.c @@ -12,7 +12,7 @@ #include #include -#if ((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)) && !defined(__dietlibc__) +#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__GLIBC__) #define HAS_STATVFS #endif