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

Gegl# issues

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.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

Gegl# issues Mark Probst 08 May 22:00
Gegl# issues Øyvind Kolås 09 May 10:16
Mark Probst
2007-05-08 22:00:44 UTC (almost 17 years ago)

Gegl# issues

Hi!

I've just built Gegl# from SVN, and to get the view test running, I had to make the following change:

Index: gegl/gegl-init.c =================================================================== --- gegl/gegl-init.c (revision 1454) +++ gegl/gegl-init.c (working copy) @@ -62,7 +62,7 @@
{
if (gegl_initialized)
return;
- g_thread_init (NULL);
+ if (!g_thread_supported()) g_thread_init (NULL);

/* If any command-line actions are ever added to GEGL, then the * commented out code below should be used. Until then, we simply

Apparently the GThread system is already initialized before the Gegl initialization, and it must only be initialized once.

Mark

Øyvind Kolås
2007-05-09 10:16:19 UTC (almost 17 years ago)

Gegl# issues

On 5/8/07, Mark Probst wrote:

I've just built Gegl# from SVN, and to get the view test running, I had to make the following change:

...

Apparently the GThread system is already initialized before the Gegl initialization, and it must only be initialized once.

Change commited to SVN.

/Øyvind K.