Append revision number to the version string
authorWerner Koch <wk@gnupg.org>
Tue, 3 Jan 2006 18:40:33 +0000 (18:40 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 3 Jan 2006 18:40:33 +0000 (18:40 +0000)
ChangeLog
configure.ac

index 40ccb022cacdec4e6a5c9c096d0a66ebb8fcd008..82fa65a0c86847fd1e74dd33be808008718188c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-03  Werner Koch  <wk@g10code.com>
+
+       * configure.ac: Append SVN revision to the version.
+
 2005-11-18  Werner Koch  <wk@g10code.com>
 
        * configure.ac (BUILD_REVISION): New.
index f8cfa0fbebeafda9eee92ec647496ed4b3246ce2..635dc8caafb2bef2e2a13cb9d8aec8f56db88338 100644 (file)
@@ -25,7 +25,24 @@ min_automake_version="1.9.3"
 
 # Version number: Remember to change it immediately *after* a release.
 #                 Make sure to run  "svn up" before a "make dist".
-AC_INIT(gpgme, 1.1.1-cvs, [bug-gpgme@gnupg.org])
+#                 See below for the LT versions.
+#
+# The CVS version is usually the next intended release version with
+# the string "-cvs" appended.  The reason for this is that tests for a
+# specific feature can already be done under the assumption that the
+# CVS version is the most recent one in a branch.  To disable the CVS
+# version for the real release, just comment out the my_iscvs macro.
+# Note, that we are now using Subversion instead of CVS and append the
+# SVN revision number to the "cvs" suffix.  To make this most useful
+# for snapshot releases please do an "svn up" right before recreating
+# the configure script, so that a proper revision number for all files
+# is available when running a "make distcheck".
+m4_define(my_version, [1.1.1])
+m4_define(my_iscvs, yes)
+AC_INIT([gpgme], my_version[]m4_ifdef([my_iscvs], [-cvs[]m4_translit(
+               [$Revision$],[Ra-z $:])]),
+               [bug-gpgme@gnupg.org])
+
 # LT Version numbers, remember to change them just *before* a release.
 #   (Code changed:                     REVISION++)
 #   (Interfaces added/removed/changed: CURRENT++, REVISION=0)