A Code Monkey's Blog

Built gtk3.0 on openSUSE-11.1

I built gtk3.0 from source on openSUSE-11.1 x86-64bit. As expected, I ran into one annoying problem like this:

symbol lookup error: /opt/gnome/lib/libcairo-gobject.so.2: undefined symbol: cairo_region_destroy

I searched for the solution online. Someone suggested disabling gobject-introspection when compiling gtk3. But the default setting for ...

Perl Inline module is awesome

As you might know that I'm doing some image processing with Perl and GD module. However, iterating a whole 512x512 image, i.e. every pixels, is prohibitively slow in Perl. Here is the Inline module to rescue. After playing around with it in several minutes, yes, only several minutes ...