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 128628 - Compile failure of 2.5.2 on solaris 8
Compile failure of 2.5.2 on solaris 8
Status: RESOLVED DUPLICATE of bug 127193
Product: gnome-vfs
Classification: Deprecated
Component: Build
cvs (head)
Other Solaris
: Normal blocker
: ---
Assigned To: gnome-vfs maintainers
gnome-vfs maintainers
Depends on:
Blocks:
 
 
Reported: 2003-12-05 22:23 UTC by Peter O'Shea
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.5/2.6



Description Peter O'Shea 2003-12-05 22:23:53 UTC
Compiling gnome-vfs-2.5.2 on sparc solaris 8 with gcc-3.3.2, I get this:

/home/poshea/usr/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -threads
-DORBIT2=1 -I/home/poshea/usr/include/glib-2.0
-I/home/poshea/usr/lib/glib-2.0/include -I/home/poshea/usr/include/gconf/2
-I/home/poshea/usr/include/orbit-2.0
-I/home/poshea/usr/include/bonobo-activation-2.0
-I/home/poshea/usr/include/libbonobo-2.0 -I/home/poshea/usr/include/libxml2
-DORBIT2=1 -I/home/poshea/usr/include/libbonobo-2.0
-I/home/poshea/usr/include/glib-2.0 -I/home/poshea/usr/lib/glib-2.0/include
-I/home/poshea/usr/include/orbit-2.0
-I/home/poshea/usr/include/bonobo-activation-2.0 -D_FILE_OFFSET_BITS=64
-D_BSD_SOURCE -D_GNU_SOURCE -D_LARGEFILE64_SOURCE
-D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DG_DISABLE_DEPRECATED
-DDATADIR=\"/home/poshea/usr/share\" -DLIBDIR=\"/home/poshea/usr/lib\"
-DPREFIX=\"/home/poshea/usr\"
-DGNOMEVFS_LOCALEDIR=\"/home/poshea/usr/share/locale\"
-DSYSCONFDIR=\"/home/poshea/usr/etc\" -DG_LOG_DOMAIN=\"libgnomevfs\"
-I/home/poshea/usr/include -O3 -mcpu=ultrasparc -I/home/poshea/usr/include
-MT gnome-vfs-utils.lo -MD -MP -MF .deps/gnome-vfs-utils.Tpo -c
gnome-vfs-utils.c  -fPIC -DPIC -o .libs/gnome-vfs-utils.lo
gnome-vfs-utils.c: In function `gnome_vfs_get_volume_free_space':
gnome-vfs-utils.c:813: error: storage size of `statfs_buffer2' isn't known
gmake[3]: *** [gnome-vfs-utils.lo] Error 1
gmake[3]: Leaving directory
`/home/poshea/usr/source/gnome2.4/gnome-vfs-2.5.2/libgnomevfs'


It looks like #include <sys/statfs.h> is needed, but even after that, the
compile fails with this:

gnome-vfs-utils.c: In function `gnome_vfs_get_volume_free_space':
gnome-vfs-utils.c:816: error: too few arguments to function `statfs'
gnome-vfs-utils.c:824: error: structure has no member named `f_type'

The sys/statfs.h for Solaris 8 has this for statfs:

/*
 * Structure returned by statfs(2) and fstatfs(2).
 * This structure and associated system calls have been replaced
 * by statvfs(2) and fstatvfs(2) and will be removed from the system
 * in a near-future release.
 */

struct  statfs {
        short   f_fstyp;        /* File system type */
        long    f_bsize;        /* Block size */
        long    f_frsize;       /* Fragment size (if supported) */
        long    f_blocks;       /* Total number of blocks on file system */
        long    f_bfree;        /* Total number of free blocks */
        ino_t   f_files;        /* Total number of file nodes (inodes) */
        ino_t   f_ffree;        /* Total number of free file nodes */
        char    f_fname[6];     /* Volume name */
        char    f_fpack[6];     /* Pack name */
};


gnome-vfs hasn't compiled on Solaris since 2.4.0 (see bugs 124585, 126624)!
Comment 1 Christophe Fergeau 2003-12-05 23:16:06 UTC

*** This bug has been marked as a duplicate of 127193 ***