RSS/Atom feed Twitter
Site is read-only, email is disabled

GEGL compile problems

This discussion is connected to the gegl-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

1 of 1 message available
Toggle history

Please log in to manage your subscriptions.

GEGL compile problems David 05 May 02:31
David
2008-05-05 02:31:15 UTC (almost 17 years ago)

GEGL compile problems

Hi,

trying to compile GEGL on my system (Debian/AMD64) yielded an error during the generation of the example files (output from clones.txt):

babl-format.c:438 babl_format() babl_format("B'aG'aR'aA u8"): not found

This seems to indicate that the babl extension library "gegl-fixups.so" wasn't found (not the best error message ;). Digging through the codebase i found the following line in babl/babl-extension.c:

#define BABL_PATH LIBDIR BABL_DIR_SEPARATOR BABL_LIBRARY

The problem here is that on my system LIBDIR was not set to PREFIX/lib which led to the extensions not being found.

Some additional info: autoconf (GNU Autoconf) 2.61
automake (GNU automake) 1.9.6
command used to build: ./autogen.sh --prefix=/home/david/.local

I ended up defining LIBDIR by hand, after which gegl compiled happily.

hope this info is of use to somebody, David.