On Thu, Jun 23, 2011 at 11:00:17AM -0400, twu...@goodyear.com wrote:
> I reconfigured with --disable-xcomposite
> and got MUCH further in the compile, but now hit:
> 
>   CCLD   gtk-query-immodules-3.0
> ./.libs/libgtk-3.so: undefined reference to `pango_cairo_show_glyph_item'

Same sort of lark:
pango_cairo_show_glyph_item appeared in libpangocairo "v1.22"

ldd ./.libs/libgtk-3.so should tell you if libpangocairo was found,
and something like nm -g /usr/lib/libpangocairo-1.0.a
0000000000001df0 T pango_cairo_show_glyph_item
will tell you if your library has that function.

(again maybe we want an
AC_CHECK_LIB([pangocairo-1.0], [pango_cairo_show_glyph_item])
in configure.ac ...)

Cheers,

Patrick
_______________________________________________
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to