From 23b1a0ab70f190dbbb33dabb18ec039c7d85d6b3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 11 Jan 2020 23:51:49 +0300 Subject: Add implementation --- libcurl/build/bootstrap.build | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 libcurl/build/bootstrap.build (limited to 'libcurl/build/bootstrap.build') diff --git a/libcurl/build/bootstrap.build b/libcurl/build/bootstrap.build new file mode 100644 index 0000000..23d898a --- /dev/null +++ b/libcurl/build/bootstrap.build @@ -0,0 +1,35 @@ +# file : build/root.build +# copyright : Copyright (c) 2018-2019 Code Synthesis Ltd +# license : cURL License; see accompanying COPYING file + +project = libcurl + +using version +using config +using test +using install +using dist + +# The cURL version has the .. form and follows the semver +# semantics. Specifically, the major version is increased when really big +# changes are made, the minor version when new features are added, and the +# patch version is increased for bug fixes. See also: +# +# https://curl.haxx.se/docs/versions.html +# +# The ABI version doesn't correlate with the release version and is assigned +# via the libtool's -version-info :: option +# (VERSIONINFO in lib/Makefile.am). As it follows from the comment in the +# makefile, the major version (current - age) is incremented for backwards- +# incompatible ABI changes. See also: +# +# https://curl.haxx.se/libcurl/abi.html +# +if ($version.major == 7 && $version.minor == 67 && $version.patch == 0) +{ + + abi_version_major = 4 + abi_version = "$abi_version_major.6.0" # .. +} +else + fail 'increment the ABI version?' -- cgit v1.1