move subsurface-server-protocol.h include out of compositor.h

The subsurface-server-protocol.h header should not be included
by any headers that are part of the SDK since it is not exported.
Otherwise, SDK consumers will break during compilation.

Move this include from compositor.h to compositor.c.

Fixes https://bugs.freedesktop.org/show_bug.cgi?id=64537

Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
This commit is contained in:
U. Artie Eoff 2013-05-13 15:55:47 -07:00 committed by Kristian Høgsberg
parent 7123388b20
commit ec08f33482
2 changed files with 1 additions and 1 deletions

View File

@ -56,6 +56,7 @@
#include <wayland-server.h>
#include "compositor.h"
#include "subsurface-server-protocol.h"
#include "../shared/os-compatibility.h"
#include "git-version.h"
#include "version.h"

View File

@ -35,7 +35,6 @@ extern "C" {
#include "version.h"
#include "matrix.h"
#include "config-parser.h"
#include "subsurface-server-protocol.h"
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])