GNOME Bugzilla – Bug 656151
configure test logic inverted, doesn't match comments
Last modified: 2011-08-22 16:28:33 UTC
configure.ac has the following: # on solaris and irix, statfs doesn't even have the f_bavail field AS_IF([test $ac_cv_member_struct_statfs_f_bavail = yes], [ac_cv_func_statfs=no], # else, at least on linux, statfs is the actual syscall [ac_cv_func_statvfs=no]) If $ac_cv_member_struct_statfs_f_bavail is no, it disables statvfs, which is the one it should be enabling. Also I think the x = x test armour is missing.
This was noted over in Bug 617949 - any chance the rest of the patch in that bug can be commited too?