1.1 --- a/configure.ac Thu Aug 13 19:01:16 2009 +0100
1.2 +++ b/configure.ac Thu Oct 01 20:38:39 2009 +0100
1.3 @@ -1,7 +1,7 @@
1.4 # -*- Autoconf -*-
1.5 # Process this file with autoconf to produce a configure script.
1.6
1.7 -AC_INIT([plover],[0.2],[ali@juiblex.co.uk])
1.8 +AC_INIT([plover],[0.2.1],[ali@juiblex.co.uk])
1.9 AC_PREREQ(2.59)
1.10 AC_CONFIG_AUX_DIR([config])
1.11 AC_CONFIG_SRCDIR([plover/plover.h])
1.12 @@ -34,6 +34,22 @@
1.13 ;;
1.14 esac
1.15
1.16 +# libtool versioning for libplover. For a release one of the following
1.17 +# must apply:
1.18 +#
1.19 +# - If interfaces have been changed or added, but binary compatibility has
1.20 +# been preserved, increment CURRENT and AGE and set REVISION to 0.
1.21 +# - If binary compatibility has been broken (eg removed or changed interfaces),
1.22 +# increment CURRENT and set AGE and REVISION to 0.
1.23 +# - If the interface is the same as the previous version, increment REVISION.
1.24 +#
1.25 +LT_CURRENT=0
1.26 +LT_REVISION=1
1.27 +LT_AGE=0
1.28 +AC_SUBST(LT_CURRENT)
1.29 +AC_SUBST(LT_REVISION)
1.30 +AC_SUBST(LT_AGE)
1.31 +
1.32 ##################################################
1.33 # Checks for programs.
1.34 ##################################################