diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-26 17:18:38 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-26 17:56:27 +0100 |
commit | b710a4730940e54ac7ffd5073eecf950997a0484 (patch) | |
tree | d7e8502169463b543ab77a988e7b191f32240b28 | |
parent | fb8881e84bb24b2a54ee5aa449b6f5638de36404 (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.h | 6 |
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 |