diff options
author | Jonathon Jongsma <jjongsma@gnome.org> | 2007-11-10 20:56:44 -0600 |
---|---|---|
committer | Jonathon Jongsma <jjongsma@gnome.org> | 2007-11-10 20:56:44 -0600 |
commit | 931299ba607eb0ee2d84659520a2727ffb55fd99 (patch) | |
tree | 9794cada081da6f3e9d8c7e9c84d0c3b5fcfc186 | |
parent | a2b10d83de0d400b6a414e83f409b26604480b79 (diff) |
Start on cairo 1.5.x features
* configure.in: bump version and minimum cairo version so that we can start
implementing the 1.5.x features
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2007-11-10 Jonathon Jongsma <jjongsma@gnome.org> + + * configure.in: bump version and minimum cairo version so that we can start + implementing the 1.5.x features + == 1.4.6 == 2007-11-10 Jonathon Jongsma <jjongsma@gnome.org> diff --git a/configure.in b/configure.in index 46f9785..7163d3b 100644 --- a/configure.in +++ b/configure.in @@ -2,8 +2,8 @@ AC_INIT(cairomm/cairomm.h) #release versioning GENERIC_MAJOR_VERSION=1 -GENERIC_MINOR_VERSION=4 -GENERIC_MICRO_VERSION=6 +GENERIC_MINOR_VERSION=5 +GENERIC_MICRO_VERSION=0 GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION AC_SUBST(GENERIC_MAJOR_VERSION) AC_SUBST(GENERIC_MINOR_VERSION) @@ -102,7 +102,7 @@ fi AC_CHECK_HEADERS(string list map, , exit) -PKG_CHECK_MODULES(CAIROMM, cairo >= 1.4) +PKG_CHECK_MODULES(CAIROMM, cairo >= 1.5) AC_ARG_ENABLE(tests, AC_HELP_STRING([--enable-tests=yes|no], |