diff options
author | Uli Schlachter <psychon@znc.in> | 2013-03-22 14:14:29 +0100 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2013-03-22 14:14:29 +0100 |
commit | 41ef69a98c67a2cb8b64e8ef3bb986d57a0a2437 (patch) | |
tree | 894881e1e54c7f84c238ad6ed80ee5d97c7bbd03 | |
parent | b7c06fff1f597ba74fa6618766ec297d3a4bf880 (diff) |
Fix "make check" standalone header check
This fixes the following error:
./cairo-fixed-private.h: In function ‘_slow_segment_intersection’:
./cairo-fixed-private.h:374:9: error: ‘FALSE’ undeclared (first use in this function)
./cairo-fixed-private.h:374:9: note: each undeclared identifier is reported only once for each function it appears in
./cairo-fixed-private.h:386:12: error: ‘TRUE’ undeclared (first use in this function)
Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r-- | src/cairo-fixed-private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cairo-fixed-private.h b/src/cairo-fixed-private.h index 352ca39d..e970c0ff 100644 --- a/src/cairo-fixed-private.h +++ b/src/cairo-fixed-private.h @@ -40,6 +40,7 @@ #include "cairo-fixed-type-private.h" #include "cairo-wideint-private.h" +#include "cairoint.h" /* Implementation */ |