diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 4d0db09..a184847 100644 --- a/configure.ac +++ b/configure.ac @@ -21,18 +21,19 @@ # The following lines are used by ./autogen.sh. AC_PREREQ(2.59) min_automake_version="1.9.6" + # The gettext version is set below using AM_GNU_GETTEXT_VERSION # Version number: Remember to change it immediately *after* a release. -AC_INIT([libgpg-error],[1.4-cvs],[[email protected]]) +AC_INIT([libgpg-error],[1.4],[[email protected]]) # LT Version numbers, remember to change them just *before* a release. # (Code changed: REVISION++) # (Interfaces added/removed/changed: CURRENT++, REVISION=0) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # Note that added error codes don't constitute an interface change. -LIBGPG_ERROR_LT_CURRENT=2 -LIBGPG_ERROR_LT_AGE=2 -LIBGPG_ERROR_LT_REVISION=1 +LIBGPG_ERROR_LT_CURRENT=3 +LIBGPG_ERROR_LT_AGE=3 +LIBGPG_ERROR_LT_REVISION=0 AC_SUBST(LIBGPG_ERROR_LT_CURRENT) AC_SUBST(LIBGPG_ERROR_LT_AGE) AC_SUBST(LIBGPG_ERROR_LT_REVISION) @@ -45,6 +46,7 @@ AC_CONFIG_HEADER([config.h]) # We need to know about the host architecture to avoid spurious # warnings. AC_CANONICAL_HOST +AB_INIT # Checks for programs. AC_PROG_CC |