From d7ed5335b90175300349669fd102c4d44b05c381 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 29 Jul 2020 23:11:56 +0300 Subject: Add implementation --- libexpat/build/bootstrap.build | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libexpat/build/bootstrap.build (limited to 'libexpat/build/bootstrap.build') diff --git a/libexpat/build/bootstrap.build b/libexpat/build/bootstrap.build new file mode 100644 index 0000000..eb0c50f --- /dev/null +++ b/libexpat/build/bootstrap.build @@ -0,0 +1,27 @@ +# file : build/bootstrap.build +# license : MIT; see accompanying COPYING file + +project = libexpat + +using version +using config +using dist +using test +using install + +# The Expat version has the .. form and follows the +# semver semantics, according to the documentation in expat/lib/expat.h. +# +# The ABI version doesn't correlate with the release version and is assigned +# via the libtool's -version-info :: option +# (LIBCURRENT, LIBREVISION, and LIBAGE in expat/configure.ac). As it follows +# from the comment in expat/configure.ac, the major version (current - age) is +# incremented for backwards-incompatible ABI changes. +# +if ($version.major == 2 && $version.minor == 2 && $version.patch == 9) +{ + abi_version_major = 1 + abi_version = "$abi_version_major.6.11" # .. +} +else + fail 'increment the ABI version?' -- cgit v1.1