summaryrefslogtreecommitdiffstats
path: root/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-04-06 04:54:18 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-04-06 04:54:18 +0800
commit638b97f5a5d741cee963b662efa43f26ddf9d04c (patch)
treec4dfb23a4708ce0260562560cd232bdef6bb6711 /devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c
parent9062210343a87551bd420e59ca2d4e52f1365fe3 (diff)
downloadmarcuscom-ports-638b97f5a5d741cee963b662efa43f26ddf9d04c.tar.gz
marcuscom-ports-638b97f5a5d741cee963b662efa43f26ddf9d04c.tar.zst
marcuscom-ports-638b97f5a5d741cee963b662efa43f26ddf9d04c.zip
Garbage collection GNOME 2.5. Next stop, GNOME 2.7.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2260 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c')
-rw-r--r--devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c b/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c
deleted file mode 100644
index ab74eb932..000000000
--- a/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-utils.c
+++ /dev/null
@@ -1,31 +0,0 @@
---- libgnomevfs/gnome-vfs-utils.c.orig Sat Mar 13 18:57:02 2004
-+++ libgnomevfs/gnome-vfs-utils.c Sat Mar 13 18:51:21 2004
-@@ -797,8 +797,10 @@
-
- #if HAVE_STATVFS
- statfs_result = statvfs (unescaped_path, &statfs_buffer);
-+#define statfs_bsize f_frsize
- #else
- statfs_result = statfs (unescaped_path, &statfs_buffer);
-+#define statfs_bsize f_bsize
- #endif
-
- if (statfs_result != 0) {
-@@ -831,7 +833,7 @@
- }
- }
-
-- block_size = statfs_buffer.f_bsize;
-+ block_size = statfs_buffer.statfs_bsize;
- free_blocks = statfs_buffer.f_bavail;
-
- *size = block_size * free_blocks;
-@@ -859,7 +861,7 @@
- paths = g_strsplit (gnome_var, ":", 0);
-
- for (temp_paths = paths; *temp_paths != NULL; temp_paths++) {
-- full_filename = g_strconcat (*temp_paths, "/share/pixmaps/", relative_filename, NULL);
-+ full_filename = g_strconcat (*temp_paths, "/share/gnome/pixmaps/", relative_filename, NULL);
- if (g_file_test (full_filename, G_FILE_TEST_EXISTS)) {
- g_strfreev (paths);
- return full_filename;