diff options
author | Johan Dahlin <johan@gnome.org> | 2008-08-31 21:35:26 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-08-31 21:35:26 +0000 |
commit | e0f8670b52a7b68dd02364d577b72232727d1d00 (patch) | |
tree | 37e2058a333b7cfaf07ad18f88d480ba9d1a9258 /configure.ac | |
parent | c27003d0b8aca2aabbc6d41a3475818a7946e36e (diff) | |
download | gobject-introspection-e0f8670b52a7b68dd02364d577b72232727d1d00.tar.gz |
Bump version to 0.5.0
2008-08-31 Johan Dahlin <johan@gnome.org>
* configure.ac:
Bump version to 0.5.0
svn path=/trunk/; revision=558
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d45b5e36..5a189dd1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,15 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +dnl the gi version number +m4_define(gi_major_version, 0) +m4_define(gi_minor_version, 5) +m4_define(gi_micro_version, 0) +m4_define(gi_version, gi_major_version.gi_minor_version.gi_micro_version) + AC_PREREQ(2.59) -AC_INIT(gobject-introspection, 0.1, http://bugzilla.gnome.org/enter_bug.cgi?product=glib) +AC_INIT(gobject-introspection, gi_version, + http://bugzilla.gnome.org/enter_bug.cgi?product=glib) AM_INIT_AUTOMAKE([1.7 -Wno-portability]) AM_MAINTAINER_MODE AC_CONFIG_HEADER([config.h]) |