From 74b8cc3acbfac17a8e937583acd71be29b2f3434 Mon Sep 17 00:00:00 2001
From: Robert Bragg <robert@linux.intel.com>
Date: Sun, 28 Apr 2013 16:49:12 +0100
Subject: [PATCH] Include cogl-defines.h before checking COGL_HAS_ define

This makes sure we include cogl-defines.h in cogl-matrix.h before
checking if COGL_HAS_GYPE_SUPPORT is defined

Reviewed-by: Neil Roberts <neil@linux.intel.com>

(cherry picked from commit aa5ba324bb3b2ce77be29942f8716d61919cefeb)
---
 cogl/cogl-matrix.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cogl/cogl-matrix.h b/cogl/cogl-matrix.h
index 897711c75..09fb0097f 100644
--- a/cogl/cogl-matrix.h
+++ b/cogl/cogl-matrix.h
@@ -27,6 +27,8 @@
 #ifndef __COGL_MATRIX_H
 #define __COGL_MATRIX_H
 
+#include <cogl/cogl-defines.h>
+
 #ifdef COGL_HAS_GTYPE_SUPPORT
 #include <glib-object.h>
 #endif /* COGL_HAS_GTYPE_SUPPORT */