build: include <cairo.h> not <cairo/cairo.h>

cairo.h is intended to be included as <cairo.h> not <cairo/cairo.h> as
is the style for clutter.h. If you have installed cairo to a custom
prefix then using cairo/cairo.h can result in unintentional use of the
system cairo headers, or if they aren't installed then it will result in
a failure to find the header.
This commit is contained in:
Robert Bragg
2011-06-10 17:48:54 +01:00
parent d151d789f6
commit 7b4f7cd3e0
4 changed files with 4 additions and 4 deletions

View File

@@ -53,7 +53,7 @@
#include "config.h"
#endif
#include <cairo/cairo.h>
#include <cairo.h>
#include "clutter-stage.h"