diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | RELEASING | 7 | ||||
-rwxr-xr-x | util/cairo-api-update | 1 |
3 files changed, 10 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2005-05-17 Carl Worth <cworth@cworth.org> + * util/cairo-api-update: Remove #ifdef munging since we once again + support either #if or #ifdef. + +2005-05-17 Carl Worth <cworth@cworth.org> + * RELEASING: Update instructions to match output of 'make distcheck' @@ -32,11 +32,14 @@ fixes are committed. Here are the steps to follow: snapshot. Summarize major changes briefly in a style similar to other entries in NEWS. Take special care to note any incompatible changes in the API. These should be easy to find - by looking for cairo.h in the ChangeLog. Additionally, the + by looking for cairo*.h in the ChangeLog. Additionally, the output of the following command should be examined using the previous snapshot tag: - cvs diff -r SNAPSHOT_X_Y_Z src/cairo.h + cvs diff -r SNAPSHOT_X_Y_Z src/*.h + + [Hmm, it would be nice to have a pattern for that command that + would exclude private header files.] 4) Increment CAIRO_VERSION in configure.in diff --git a/util/cairo-api-update b/util/cairo-api-update index 5cc2386c..e16df43f 100755 --- a/util/cairo-api-update +++ b/util/cairo-api-update @@ -52,7 +52,6 @@ cairo_api_update() { s/CAIRO_OPERATOR_IN_REVERSE/CAIRO_OPERATOR_DEST_IN/g s/CAIRO_OPERATOR_OUT_REVERSE/CAIRO_OPERATOR_DEST_OUT/g s/CAIRO_OPERATOR_ATOP_REVERSE/CAIRO_OPERATOR_DEST_ATOP/g - s/^#\([ ]*\)ifdef[ ]*CAIRO_HAS/#\1if CAIRO_HAS/g } ' $backup > $file |