From 4af62438f206f17fcfd57dcfa2740e2168415f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 22 Nov 2016 17:24:33 +0100 Subject: [PATCH] wayland: Fix cogl include Do not include cogl.h in a way that may pick up the header from a system-installed cogl version, which is incompatible with our internal fork. --- src/wayland/meta-wayland-egl-stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/meta-wayland-egl-stream.h b/src/wayland/meta-wayland-egl-stream.h index db9a94013..12a011f78 100644 --- a/src/wayland/meta-wayland-egl-stream.h +++ b/src/wayland/meta-wayland-egl-stream.h @@ -28,7 +28,7 @@ #include #include -#include "cogl/cogl/cogl.h" +#include "cogl/cogl.h" #include "wayland/meta-wayland-types.h" #define META_TYPE_WAYLAND_EGL_STREAM (meta_wayland_egl_stream_get_type ())