After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 583264 - configure check for statvfs fails
configure check for statvfs fails
Status: RESOLVED FIXED
Product: nautilus
Classification: Core
Component: general
2.26.x
Other NetBSD
: Normal normal
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-05-19 21:32 UTC by Thomas Klausner
Modified: 2009-05-28 14:46 UTC
See Also:
GNOME target: ---
GNOME version: 2.25/2.26


Attachments
Workaround (464 bytes, patch)
2009-05-19 21:33 UTC, Thomas Klausner
none Details | Review

Description Thomas Klausner 2009-05-19 21:32:44 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.
Comment 1 Thomas Klausner 2009-05-19 21:33:54 UTC
Created attachment 134985 [details] [review]
Workaround

Workaround patch against configure that makes a build complete.
Comment 2 Cosimo Cecchi 2009-05-28 14:46:10 UTC
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