(svn r2356) Make check if statvfs() is availible a bit more sensible
authortron
Sat, 21 May 2005 19:42:34 +0000
changeset 1850 15826a18b5ac
parent 1849 4f49b65ad6a8
child 1851 35497f3d16ee
(svn r2356) Make check if statvfs() is availible a bit more sensible
unix.c
--- a/unix.c	Sat May 21 19:41:35 2005 +0000
+++ b/unix.c	Sat May 21 19:42:34 2005 +0000
@@ -12,7 +12,7 @@
 #include <pwd.h>
 #include <signal.h>
 
-#if ((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)) && !defined(__dietlibc__)
+#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__GLIBC__)
 	#define HAS_STATVFS
 #endif