views:

32

answers:

1

I'm trying to compile cairo together with pango to enable advanced font rendering in my application. I got it to work, but I cannot use unicode characters (i.e. I tested with Chinese character).

When I run my application I get this message:

(process:42776): Pango-WARNING **: Failed to load Pango module '/Users/pollux/Downloads/cairo_pango_test_2/build/lib/pango/1.6.0/modules/pango-basic-atsui.so' for id 'BasicScriptEngineATSUI'

I did compile pango using --with-included-modules=yes and --enable-static. I'm linking against this static lib. Maybe I misunderstood the --with-included-modules, but would this "embed" the modules into the libpango-1.0.a?

A: 

I just recompiled everything and now it suddenly works :)

pollux