From 41ef69a98c67a2cb8b64e8ef3bb986d57a0a2437 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Fri, 22 Mar 2013 14:14:29 +0100 Subject: Fix "make check" standalone header check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/cairo-fixed-private.h | 1 + 1 file changed, 1 insertion(+) 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 */ -- cgit v1.2.3