diff options
author | lloyd <[email protected]> | 2011-06-30 16:53:22 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-06-30 16:53:22 +0000 |
commit | b16bd4ad156f954dbcd4299e298765eececac19d (patch) | |
tree | b8a88bd8c225d6f5fe5a45c12cff9f48571d4585 /src/utils | |
parent | edc9ad3a1f0ecf32a49ad44866172398079aa184 (diff) |
Tick to 1.10.1 unreleased.
Try to detect the mtn revision (by shelling out to mtn automate), and
including it in build.h as BOTAN_VERSION_VC_REVISION.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/version.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/version.cpp b/src/utils/version.cpp index cf3205d19..acc8bee61 100644 --- a/src/utils/version.cpp +++ b/src/utils/version.cpp @@ -33,6 +33,7 @@ std::string version_string() else out << "released " << version_datestamp(); + out << ", revision " << BOTAN_VERSION_VC_REVISION; out << ", distribution " << BOTAN_DISTRIBUTION_INFO << ")"; return out.str(); |