diff options
author | Carl Worth <cworth@cworth.org> | 2004-04-16 08:56:45 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2004-04-16 08:56:45 +0000 |
commit | eff1670123efce23f09d8015a9db00a9b7ae98a5 (patch) | |
tree | 80918ec583de49cc7b179ea98f378d4d8ebda545 | |
parent | b0f8dcdc83d3487a5016d813a4ee3284784b78c1 (diff) |
Added notes for snapshot 0.1.22.
Now depends on libpixman 0.1.1. Bump version to 0.1.22.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2004-04-16 Carl Worth <cworth@isi.edu> + * NEWS: Added notes for snapshot 0.1.22. + + * configure.in: Now depends on libpixman 0.1.1. + Bump version to 0.1.22. + * src/cairo_image_surface.c (_create_pixman_format): Track pixman fixes to PIXMAN_FORMAT_NAME_*. @@ -1,3 +1,8 @@ +Snapshot 0.1.22 (2004-04-16 Carl Worth <cworth@isi.edu>) +======================================================== +Cairo was updated to track the changes in libpixman, and now depends +on libpixman version 0.1.1. + Snapshot 0.1.21 (2004-04-09 David Reveman <c99drn@cs.umu.se>) ============================================================= New OpenGL backend diff --git a/configure.in b/configure.in index 09e6a9771..674981551 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ AC_INIT(src/cairo.h) dnl =========================================================================== # Package version number, (as distinct from shared library version) -CAIRO_VERSION=0.1.21 +CAIRO_VERSION=0.1.22 # libtool shared library version @@ -162,7 +162,7 @@ AC_SUBST(GL_REQUIRES) dnl =========================================================================== PKG_CHECK_MODULES(FONTCONFIG, fontconfig) -PKG_CHECK_MODULES(CAIRO, libpixman >= 0.1.0) +PKG_CHECK_MODULES(CAIRO, libpixman >= 0.1.1) # Test for freetype2 separate from pkg-config since at least up to # 2003-06-07, there was no freetype2.pc in the release. |