http://qa.mandrakesoft.com/show_bug.cgi?id=4362
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2003-28-07 17:14 -------
Fixed in gnome-vfs-2.3.5-2mdk
Thanks you (but next time, use attachement for patch, it is easier to handle..)
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date:
description:
I'm trying to compile abiword-1.99.2 with a gnome-enabled build, but gcc
3.3 complains about the use of "long long" in
libgnomevfs/gnome-vfs-file-size.h.
I had it reported at gnome's bugzilla:
http://bugzilla.gnome.org/show_bug.cgi?id=118315
Patch is as follows:
--- gnome-vfs-2.3.5/libgnomevfs/gnome-vfs-file-size.h.in.long 2001-07-16
20:21:06.000000000 +0200
+++ gnome-vfs-2.3.5/libgnomevfs/gnome-vfs-file-size.h.in 2003-07-26
13:12:02.000000000 +0200
@@ -26,6 +26,8 @@
#ifndef GNOME_VFS_FILE_SIZE_H
#define GNOME_VFS_FILE_SIZE_H
+#include <glib/gtypes.h>
+
/*
* This defines GnomeVFSFileSize and GnomeVFSFileOffset
*
@@ -45,7 +47,7 @@
#define GNOME_VFS_SIZE_FORMAT_STR "@VFS_SIZE_PRINTF@"
#define GNOME_VFS_OFFSET_FORMAT_STR "@VFS_OFFSET_PRINTF@"
-typedef @VFS_SIZE@ GnomeVFSFileSize;
-typedef @VFS_OFFSET@ GnomeVFSFileOffset;
+G_GNUC_EXTENSION typedef @VFS_SIZE@ GnomeVFSFileSize;
+G_GNUC_EXTENSION typedef @VFS_OFFSET@ GnomeVFSFileOffset;
#endif /* GNOME_VFS_FILE_SIZE_H */