From 8d6aa603ef3a9680c7032cabf59e3673f773dea3 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Fri, 7 Jun 2013 21:41:13 +0300 Subject: cli: Guard deprecated g_type_init calls g_type_init was deprecated in GLib 2.35.1. In order to compile cleanly, guard these with a suitable #if. (commit msg from https://bugs.freedesktop.org/attachment.cgi?id=73774 ) --- lib/database.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/database.cc') diff --git a/lib/database.cc b/lib/database.cc index 52ed618b..5cc07658 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -649,7 +649,9 @@ notmuch_database_open (const char *path, } /* Initialize the GLib type system and threads */ +#if !GLIB_CHECK_VERSION(2, 35, 1) g_type_init (); +#endif /* Initialize gmime */ if (! initialized) { -- cgit v1.2.3