From a3bfeef2d33b2414e85d467483b3912f6fb2fc03 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Thu, 15 Jan 2015 16:18:58 +0800 Subject: [PATCH] giomodule.c: Include Some Forgotten Headers The headers are used for G_TYPE_INITABLE and G_NETWORK_MONITOR_EXTENSION_POINT_NAME, which led to undefined variables if not included... --- gio/giomodule.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gio/giomodule.c b/gio/giomodule.c index 73896588f..8ceebd28a 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -35,6 +35,8 @@ #include "gtlsbackend.h" #include "gvfs.h" #include "gnotificationbackend.h" +#include "ginitable.h" +#include "gnetworkmonitor.h" #ifdef G_OS_WIN32 #include "gregistrysettingsbackend.h" #endif