On Thu, Sep 24, 2009 at 10:56:34PM -0700, Brian wrote: > I'm finally getting around to teaching myself gtk and autotools, and I want > to take advantage of the gtkbuilder system. But I'm receiving some errors > when I start up glade3.
Those are warnings - does glade3 effectively starts ? > $ glade-3 > (glade-3:5867): GladeUI-WARNING **: No icon named 'widget-gtk-sizegroup' was > fou > nd for object class 'GtkSizeGroup'. There might be a problem with icon path - glade package installs its icons in share/glade3/pixmaps/hicolor while other packages installs them in share/hicolor. I'll try to look at it and see if it's a real issue. > (glade-3:5867): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=0 A warning : you have FAM installed but not running. It's not mandatory, but not launched automatically. pkg_info -M fam for more info. > devhelp:/usr/local/lib/libestdc++.so.11.0: /usr/lib/libstdc++.so.49.0 : > WARNING: > symbol(_ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE) size mismatch, > relink > your program Those are "normals". devhelp links with webkit which links with libestdc++, while it also links with libstdc++. Symbol conflicts, should only be warnings. Landry