From de91921561092689369b56c54950474e0a86e66f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 15 Oct 2018 21:08:04 +0300 Subject: Add implementation --- openssl/version.hxx.in | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 openssl/version.hxx.in (limited to 'openssl/version.hxx.in') diff --git a/openssl/version.hxx.in b/openssl/version.hxx.in new file mode 100644 index 0000000..805987d --- /dev/null +++ b/openssl/version.hxx.in @@ -0,0 +1,44 @@ +// file : openssl/version.hxx.in -*- C++ -*- +// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef OPENSSL_AGENT_VERSION // Note: using the version macro itself. + +// Note: using build2 standard versioning scheme. The numeric version format +// is AAABBBCCCDDDE where: +// +// AAA - major version number +// BBB - minor version number +// CCC - bugfix version number +// DDD - alpha / beta (DDD + 500) version number +// E - final (0) / snapshot (1) +// +// When DDDE is not 0, 1 is subtracted from AAABBBCCC. For example: +// +// Version AAABBBCCCDDDE +// +// 0.1.0 0000010000000 +// 0.1.2 0000010010000 +// 1.2.3 0010020030000 +// 2.2.0-a.1 0020019990010 +// 3.0.0-b.2 0029999995020 +// 2.2.0-a.1.z 0020019990011 +// +#define OPENSSL_AGENT_VERSION $openssl_agent.version.project_number$ULL +#define OPENSSL_AGENT_VERSION_STR "$openssl_agent.version.project$" +#define OPENSSL_AGENT_VERSION_ID "$openssl_agent.version.project_id$" + +#define OPENSSL_AGENT_VERSION_MAJOR $openssl_agent.version.major$ +#define OPENSSL_AGENT_VERSION_MINOR $openssl_agent.version.minor$ +#define OPENSSL_AGENT_VERSION_PATCH $openssl_agent.version.patch$ + +#define OPENSSL_AGENT_PRE_RELEASE $openssl_agent.version.pre_release$ + +#define OPENSSL_AGENT_SNAPSHOT $openssl_agent.version.snapshot_sn$ULL +#define OPENSSL_AGENT_SNAPSHOT_ID "$openssl_agent.version.snapshot_id$" + +#include + +$libbutl.check(LIBBUTL_VERSION, LIBBUTL_SNAPSHOT)$ + +#endif // OPENSSL_AGENT_VERSION -- cgit v1.1