From 598939cee1dc8d5235b25830803a5ebcc3c4d5ad Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 20 Apr 2009 12:36:43 +0100 Subject: [PATCH] [gl/cogl.c] #include for OS X builds In unifying the {gl,gles}/cogl.c code recently, moving most of the code into common/cogl.c the gmodule.h include was also mistakenly moved. Thanks to Felix Rabe for reporting this issue. Note: I haven't tested this fix myself, as I'm not set up to be able to build for OS X --- common/cogl.c | 1 - gl/cogl.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/common/cogl.c b/common/cogl.c index 509b4d3f4..c077983e5 100644 --- a/common/cogl.c +++ b/common/cogl.c @@ -29,7 +29,6 @@ #include "cogl.h" #include -#include #include #include diff --git a/gl/cogl.c b/gl/cogl.c index f033bf51d..47fe9d759 100644 --- a/gl/cogl.c +++ b/gl/cogl.c @@ -26,6 +26,7 @@ #endif #include +#include #include "cogl.h"