blob: b3eb3960c1064f8628135f977ddd4cb6ef6b78c6 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 4b17eed4b8588569d11ec4bd2b6fa3c063830e6e Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3Date: Thu, 16 May 2013 18:44:50 +0200
4Subject: [PATCH] tests/main.c: fix build with glib 2.36
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream-Status: project seems dead
10
11Signed-off-by: Andreas MΓΌller <schnitzeltony@googlemail.com>
12---
13 tests/main.c | 2 ++
14 1 files changed, 2 insertions(+), 0 deletions(-)
15
16diff --git a/tests/main.c b/tests/main.c
17index 61cce82..18165ed 100644
18--- a/tests/main.c
19+++ b/tests/main.c
20@@ -30,7 +30,9 @@ main (gint argc, gchar **argv)
21 {
22 GtkWidget *browser;
23
24+#if !GLIB_CHECK_VERSION (2, 36, 0)
25 g_thread_init(NULL);
26+#endif
27
28 gtk_init (&argc, &argv);
29
30--
311.7.6.5
32