Call g_thread_init() conditionally
authorMilan Crha <mcrha@redhat.com>
Mon, 24 Oct 2011 07:42:17 +0000 (09:42 +0200)
committerMilan Crha <mcrha@redhat.com>
Mon, 24 Oct 2011 07:42:17 +0000 (09:42 +0200)
addressbook/libedata-book/e-book-backend-sqlitedb-test.c
calendar/backends/file/e-cal-backend-file.c
camel/camel-index-control.c
camel/camel-text-index.c
camel/providers/imapx/test-imapx.c
camel/tests/lib/camel-test.c
tests/libebook/client/client-test-utils.c
tests/libecal/client/client-test-utils.c
tests/libedataserverui/test-client-examine-auth.c
tests/libedataserverui/test-name-selector.c

index df39af2..e887abb 100644 (file)
@@ -197,7 +197,9 @@ main (gint argc,
       gchar *argv[])
 {
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
 
        if (argc != 2) {
                g_print ("Please enter a path to store the cache \n");
index ba1fcf0..b2bee69 100644 (file)
@@ -3800,7 +3800,9 @@ main (gint argc,
        FILE * fin = NULL;
 
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
 
        context = g_option_context_new ("- test utility for e-d-s file backend");
        g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
index 87ae760..89ed82e 100644 (file)
@@ -127,7 +127,9 @@ gint main (gint argc, gchar **argv)
        if (argc < 2)
                do_usage (argv[0]);
 
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
        camel_init (NULL, 0);
 
        if (!strcmp(argv[1], "compress"))
index 563a332..f5b69fe 100644 (file)
@@ -1862,7 +1862,9 @@ main (gint argc,
 
        printf ("Camel text index tester!\n");
 
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
        camel_init (NULL, 0);
 
        idx = (CamelIndex *)camel_text_index_new ("textindex", O_CREAT|O_RDWR|O_TRUNC);
index fe71d1c..de9a455 100644 (file)
@@ -36,7 +36,9 @@ main (gint argc,
        }
 
        uri = argv[1];
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
        system ("rm -rf /tmp/test-camel-imapx");
        camel_init ("/tmp/test-camel-imapx", TRUE);
        camel_provider_init ();
index 16caf79..743c658 100644 (file)
@@ -103,8 +103,10 @@ camel_test_init (gint argc,
        setup = 1;
 
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        /* yeah, we do need ot thread init, even though camel isn't compiled with enable threads */
        g_thread_init (NULL);
+       #endif
 
        path = g_strdup_printf ("/tmp/camel-test");
        if (mkdir (path, 0700) == -1 && errno != EEXIST)
index 710ba25..f778333 100644 (file)
@@ -67,7 +67,9 @@ main_initialize (void)
                return;
 
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
 
        initialized = TRUE;
 }
index c6f7062..a39c994 100644 (file)
@@ -63,7 +63,9 @@ main_initialize (void)
                return;
 
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
 
        initialized = TRUE;
 }
index a02fb04..e94e33b 100644 (file)
@@ -413,7 +413,9 @@ main (gint argc,
       gchar **argv)
 {
        g_type_init ();
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
        gtk_init (&argc, &argv);
 
        e_passwords_init ();
index 3173382..bab8e4c 100644 (file)
@@ -81,7 +81,9 @@ main (gint argc,
       gchar **argv)
 {
        gtk_init (&argc, &argv);
+       #if !GLIB_CHECK_VERSION(2,31,0)
        g_thread_init (NULL);
+       #endif
 
        camel_init (NULL, 0);