[Bug 167942] gtk-update-icon-cache breaks icons on powerpc
bugzilla-daemon@bugzilla.gnome.org
bugzilla-daemon@bugzilla.gnome.org
Tue, 22 Feb 2005 07:00:23 -0500 (EST)
Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.
http://bugzilla.gnome.org/show_bug.cgi?id=167942
gtk+ | general | Ver: 2.6.x
------- Additional Comments From Sjoerd Simons 2005-02-22 07:00 -------
A simple testprogram which does the following:
struct stat s;
stat("a", &s);
g_stat("b", &s);
does the following on ppc when straced:
stat("a", 0x7ffff880) = -1 ENOENT (No such file or directory)
stat64("b", 0x7ffff900) = -1 ENOENT (No such file or directory)
but on intel and sparc it does:
stat64("a", 0xeffff6d0) = -1 ENOENT (No such file or directory)
stat64("b", 0xeffff7e0) = -1 ENOENT (No such file or directory)
So on ppc it's definitely a stat vs. stat64 problem. On sparc there probably is
a different problem from the looks of this :(
------- You are receiving this mail because: -------
You are on the CC list for the bug.