# 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 == 5 && $version.patch == 0) { abi_version_major = 1 abi_version = "$abi_version_major.8.10" # .. } else fail 'increment the ABI version?'