diff options
author | Werner Koch <[email protected]> | 2006-11-30 15:36:39 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-11-30 15:36:39 +0000 |
commit | 85bb107c10d6f9c3eb8f2b93e047588b3f77a666 (patch) | |
tree | 052e65b56e2eaec0d2ce7fbe521e428a08ba13ed /configure.ac | |
parent | Removed included gettext and updated latest gettext (diff) | |
download | libgpg-error-1.5.tar.gz libgpg-error-1.5.zip |
* configure.ac: Set LT version to C3/A3/R1.libgpg-error-1.5
* README: Switch to tar.bz2 and sha1sum.
* src/gpg-error.c (main): Add option --version.
* autogen.sh (FORCE): Add option --force.
* intl/: Removed.
* Makefile.am (SUBDIRS): Removed intl.
* configure.ac (AM_GNU_GETTEXT): Use external flag
* src/Makefile.am: Removed -I../intl.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 3124c0c..5a4e28e 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ min_automake_version="1.9.6" # Set my_issvn to "yes" for non-released code. Remember to run an # "svn up" and "autogen.sh" right before creating a distribution. m4_define([my_version], [1.5]) -m4_define([my_issvn], [yes]) +m4_define([my_issvn], [no]) m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \ || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')])) @@ -40,7 +40,7 @@ AC_INIT([libgpg-error], my_version[]m4_if(my_issvn,[yes],[-svn[]svn_revision]), # Note that added error codes don't constitute an interface change. LIBGPG_ERROR_LT_CURRENT=3 LIBGPG_ERROR_LT_AGE=3 -LIBGPG_ERROR_LT_REVISION=0 +LIBGPG_ERROR_LT_REVISION=1 AC_SUBST(LIBGPG_ERROR_LT_CURRENT) AC_SUBST(LIBGPG_ERROR_LT_AGE) AC_SUBST(LIBGPG_ERROR_LT_REVISION) |