$OpenBSD: patch-gconf_GConf_ClientBase_cs,v 1.1 2016/11/09 11:18:37 ajacoutot Exp $

Init gtype before using gconf (from Fedora).

--- gconf/GConf/ClientBase.cs.orig	Sat Oct  9 20:01:29 2010
+++ gconf/GConf/ClientBase.cs	Wed Nov  9 12:12:02 2016
@@ -40,13 +40,13 @@ namespace GConf
 
 		internal void Initialize ()
 		{
+			GLib.GType.Init ();
 			if (!gconf_is_initialized ())
 			{
 				IntPtr err;
 				gconf_init (0, IntPtr.Zero, out err);
 				if (err != IntPtr.Zero)
 					throw new GLib.GException (err);
-				GLib.GType.Init ();
 			}
 		}
 	}
