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

Problem when loading babl extensions

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.

Problem when loading babl extensions Victor Bogado da Silva Lins 23 Aug 23:54
Victor Bogado da Silva Lins
2006-08-23 23:54:11 UTC (over 17 years ago)

Problem when loading babl extensions

I had this problem with babl extensions that would not load correctly and it would say :

dlopen() failed: /usr/lib/babl-0.0/CIE-Lab.so: invalid mode for dlopen(): Invalid argument

A quick check in the dlopen man page and the problem appear, there was no #include in the source. C was not complaining because it is allowed to use a function without a previous declaration. But in this particular case it would guess incorrectly, I added the include to and all went fine.