GNOME Bugzilla – Bug 135878
seg fault in src version
Last modified: 2004-03-02 17:13:57 UTC
I compiled the last GIMP. After it completed and was installed, while launching I got a segfault... Here's the stack trace: # gimp-1.3 This is a development version of The GIMP. Debug messages may appear here. gimp_composite: use=yes, verbose=no +mmx +sse +sse2 -3dnow -altivec -vis Fontconfig warning: line 248: invalid edit binding "same" Fontconfig warning: line 260: invalid edit binding "same" Fontconfig warning: line 248: invalid edit binding "same" Fontconfig warning: line 260: invalid edit binding "same" gimp-1.3: fatal error: Segmentation fault gimp-1.3 (pid:12232): [E]xit, [H]alt, show [S]tack trace or [P]roceed: S
+ Trace 44697
You are probably using an old version of fontconfig. You should use version 2.2.0 or later. Please try to following command to check the version that you are currently running: pkg-config --modversion fontconfig Anyway, thanks for the bug report but this is a duplicate of bug #121752. You could have easily found this by searching for "FcSubstDestroy" or other functions shown in the stack trace up to the one producing the crash. *** This bug has been marked as a duplicate of 121752 ***
# pkg-config --modversion fontconfig 2.2.1 # pkg-config --modversion pango 1.2.5 # pkg-config --modversion freetype2 9.5.3
Well, the question is what version of fontconfig you are actually using at runtime. You might have compiled gimp using headers from the correct version. But this doesn't assure that the linker uses the same version. Almost certainly it is using an outdated version from /usr/X11R6/lib.
Man you guys are good... Once I removed an old fontconfig1.0 lib file from /usr/X11R6/lib and also the .pc file from the pkgconfig directory, the launched fine. Thanks!