--- Begin Message ---
Thomas Bushnell BSG пишет:
Is there an error message you would like to share with me? Please
pretend I don't know anything about the difficulties you're having and
explain everything you're doing and exactly what happens, in all detail,
with all the messages etc.
Ok. I thought that you see the same.
1. After installation:
[EMAIL PROTECTED]:~$ gnucash
gnc.bin-Message: main: binreloc relocation support was disabled at configure
time.
**
** gnc.gui:ERROR:(gnc-icons.c:68):gnc_add_stock_icon_pair: assertion failed:
(pixbuf1 && pixbuf2)
Aborted
2. Let's look at code:
65 /* Load the pixbufs */
66 pixbuf1 = gnc_gnome_get_gdkpixbuf (filename1);
67 pixbuf2 = gnc_gnome_get_gdkpixbuf (filename2);
68 g_assert (pixbuf1 && pixbuf2);
3. But why it crashes?
strace gnucash 2> trace (i've attached trace to the message)
9615 stat64("/usr/lib32/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so",
0xbfc601fc) = -1 ENOENT (No such file or directory)
9616 stat64("/usr/lib32/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so.so",
0xbfc601fc) = -1 ENOENT (No such file or directory)
9617 stat64("/usr/lib32/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so.la",
0xbfc601fc) = -1 ENOENT (No such file or directory)
9618 open("/usr/lib32/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so",
O_RDONLY) = -1 ENOENT (No such file or directory)
Looks like gnucash tries to load libraries from /usr/lib32
4. Let's try workaround:
ln -s /usr/lib /usr/lib32
Gnucash starts normally.
--
best regards,
Mihail Kotelnikov mailto:[EMAIL PROTECTED]
trace.bz2
Description: application/bzip
--- End Message ---