summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-08-26 17:18:38 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2013-08-26 17:56:27 +0100
commitb710a4730940e54ac7ffd5073eecf950997a0484 (patch)
treed7e8502169463b543ab77a988e7b191f32240b28
parentfb8881e84bb24b2a54ee5aa449b6f5638de36404 (diff)
Make "make check" happy
A recursive include should hide the bare header from check-preprocessor-syntax.sh Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/cairo-pixman-private.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cairo-pixman-private.h b/src/cairo-pixman-private.h
index 13ec82e2f..d705025c8 100644
--- a/src/cairo-pixman-private.h
+++ b/src/cairo-pixman-private.h
@@ -35,6 +35,11 @@
* Chris Wilson <chris@chris-wilson.co.uk>
*/
+#ifndef CAIRO_PIXMAN_PRIVATE_H
+#define CAIRO_PIXMAN_PRIVATE_H
+
+#include "cairo-pixman-private.h" /* keep make check happy */
+
#include <pixman.h>
#if PIXMAN_VERSION < PIXMAN_VERSION_ENCODE(0,22,0)
@@ -43,3 +48,4 @@
#define pixman_image_set_component_alpha(i, x) do { } while (0)
#endif
+#endif