diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-05 10:31:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-05 10:31:19 +0200 |
commit | b674b7f9856f672521f096e47b3f24bd94439d52 (patch) | |
tree | 20e982ba74f41d63f136c9e0bee05855f591dee0 | |
parent | 4c0196ae23e87d8446c075100bc7a07aa0b10232 (diff) |
Prepare version header for automatic management by etc/version script
-rw-r--r-- | bpkg/bpkg-version | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/bpkg/bpkg-version b/bpkg/bpkg-version index c9ebe17..9a401e9 100644 --- a/bpkg/bpkg-version +++ b/bpkg/bpkg-version @@ -23,8 +23,7 @@ // 2.2.0-a1 02019901 // 3.0.0-b2 02999952 // -// AABBCCDD -#define BPKG_VERSION 10000 +#define BPKG_VERSION 10000 #define BPKG_VERSION_STR "0.1.0" // Generally, we expect minor versions to be source code backwards- @@ -32,14 +31,11 @@ // // Note: does not apply during early development. // -// AABBCCDD -#if (LIBBUTL_VERSION < 10000 || \ - LIBBUTL_VERSION > 10000) +#if LIBBUTL_VERSION != 10000 # error incompatible libbutl version #endif -#if (LIBBPKG_VERSION < 10000 || \ - LIBBPKG_VERSION > 10000) +#if LIBBPKG_VERSION != 10000 # error incompatible libbpkg version #endif |