diff --git a/RELEASING b/RELEASING index 42260e4c8..d1e1998e0 100644 --- a/RELEASING +++ b/RELEASING @@ -34,7 +34,7 @@ Here are the steps to follow to create a new cairo release: the following command will show each patch that has changed a public header file since the given version: - find src/ -name '*.h' -not -name '*-private.h' -not -name 'cairoint.h' | \ + find src/ -name '*.h' -not -name '*-private.h' -not -name '*-test.h' -not -name 'cairoint.h' | \ xargs git log -p X.Y.Z.. -- 4) Increment cairo_version_{minor|micro} and LT_{CURRENT|VERSION|AGE} diff --git a/src/Makefile.am b/src/Makefile.am index c25911cf3..4bada6bfe 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -198,7 +198,7 @@ libcairo_la_SOURCES = \ cairo-unicode.c \ cairo-output-stream.c \ cairo-wideint.c \ - cairo-wideint.h \ + cairo-wideint-private.h \ cairo-meta-surface.c \ cairo-meta-surface-private.h \ cairo-paginated-surface.c \ diff --git a/src/cairo-wideint.h b/src/cairo-wideint-private.h similarity index 100% rename from src/cairo-wideint.h rename to src/cairo-wideint-private.h diff --git a/src/cairoint.h b/src/cairoint.h index 8f6501505..c08bd06a0 100644 --- a/src/cairoint.h +++ b/src/cairoint.h @@ -192,7 +192,7 @@ do { \ assert (NOT_REACHED); \ } while (0) -#include "cairo-wideint.h" +#include "cairo-wideint-private.h" typedef int32_t cairo_fixed_16_16_t; typedef cairo_int64_t cairo_fixed_32_32_t;