GNOME Bugzilla – Bug 583264
configure check for statvfs fails
Last modified: 2009-05-28 14:46:10 UTC
checking sys/statfs.h usability... no checking sys/statfs.h presence... no checking for sys/statfs.h... no checking sys/statvfs.h usability... yes checking sys/statvfs.h presence... yes checking for sys/statvfs.h... yes checking number of arguments to statfs()... unknown configure: error: unable to determine number of arguments to statfs() *** Error code 1 The test is wrong -- it should accept the statvfs and not care about not finding out details about the missing statfs.
Created attachment 134985 [details] [review] Workaround Workaround patch against configure that makes a build complete.
Those checks were useless, I removed them in master. commit 5bff677a0dc3ab5d5c68a2ef107cdbb34f133b34 Author: Cosimo Cecchi <cosimoc@gnome.org> Date: Thu May 28 16:45:23 2009 +0200 Remove useless statfs/statvfs checks Those checks are now obsoletes. This also fixes bug #583264