From 7e0be461b595c3561fa75472fdfd5954e4666cfc Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 13 Jun 2006 22:40:50 -0400 Subject: [PATCH] Rename cairo-wideint.h to cairo-wideint-private.h. --- RELEASING | 2 +- src/Makefile.am | 2 +- src/{cairo-wideint.h => cairo-wideint-private.h} | 0 src/cairoint.h | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{cairo-wideint.h => cairo-wideint-private.h} (100%) 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;