From a7c04b69de03cd9ff441658e732c4a138849b03a Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Wed, 2 Dec 2009 10:38:58 -0200 Subject: [PATCH] Fix build on OpenBSD Due to a missing header, gobject-introspection fails to compile on OpenBSD. And only due to headers-including-headers practice this doesn't blow up on many other platforms. https://bugzilla.gnome.org/show_bug.cgi?id=596226 --- girffi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girffi.c b/girffi.c index 83e654274..d7c52f696 100644 --- a/girffi.c +++ b/girffi.c @@ -18,10 +18,13 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ + +#include +#include + #include #include #include -#include #include #include "girffi.h" #include "girepository.h"