From 933db018331df7e7c1876ae3ee1f7887940c796b Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Wed, 29 Feb 2012 17:45:43 +0000 Subject: [PATCH] cogl-winsys-egl-wayland: Include cogl-wayland-renderer.h The Wayland winsys defines functions declared in cogl-wayland-renderer.h so it should include the header to make sure the declarations are right. This was breaking because currently the header #defines the _EXP suffixes on to the function names so it would end up exporting the wrong symbol names. --- cogl/winsys/cogl-winsys-egl-wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cogl/winsys/cogl-winsys-egl-wayland.c b/cogl/winsys/cogl-winsys-egl-wayland.c index fe75e07f3..a9d2129de 100644 --- a/cogl/winsys/cogl-winsys-egl-wayland.c +++ b/cogl/winsys/cogl-winsys-egl-wayland.c @@ -37,6 +37,7 @@ #include "cogl-winsys-egl-private.h" #include "cogl-renderer-private.h" #include "cogl-onscreen-private.h" +#include "cogl-wayland-renderer.h" static const CoglWinsysEGLVtable _cogl_winsys_egl_vtable;