summaryrefslogtreecommitdiff
path: root/libsqlite3/build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-03-11 16:47:49 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-03-11 16:47:49 +0300
commit3d3a63d289cdaa8bc4d4a3820d499ea5a3205b43 (patch)
treee608c7ebe88503c670fcec02b6db5f54a6843dd2 /libsqlite3/build
parentaa5ecc3b21bf88c5b9b9c17912e4efbd96eeab34 (diff)
Release version 3.18.2+7v3.18.2
Place libsqlite3 and sqlite3 packages into single repository.
Diffstat (limited to 'libsqlite3/build')
-rw-r--r--libsqlite3/build/.gitignore3
-rw-r--r--libsqlite3/build/bootstrap.build45
-rw-r--r--libsqlite3/build/export.build9
-rw-r--r--libsqlite3/build/root.build13
4 files changed, 70 insertions, 0 deletions
diff --git a/libsqlite3/build/.gitignore b/libsqlite3/build/.gitignore
new file mode 100644
index 0000000..4a730a3
--- /dev/null
+++ b/libsqlite3/build/.gitignore
@@ -0,0 +1,3 @@
+config.build
+root/
+bootstrap/
diff --git a/libsqlite3/build/bootstrap.build b/libsqlite3/build/bootstrap.build
new file mode 100644
index 0000000..255b363
--- /dev/null
+++ b/libsqlite3/build/bootstrap.build
@@ -0,0 +1,45 @@
+# file : build/bootstrap.build
+# copyright : not copyrighted - public domain
+
+project = libsqlite3
+
+# SQLite releases usually have 3-component versions but once in a while they
+# will make a 4-component release for what appears to be important bug fixes
+# only. So instead of dragging the fourth component around (and confusing a
+# lot of people in the process) we will always have three components and will
+# handle an occasional bugfix release with a revision.
+#
+# See also: https://www.sqlite.org/versionnumbers.html
+#
+# The SQLite documentation says that as long as the major version stays the
+# same, then it is backwards-compatible. And since we have the major version
+# already embedded into the library name, it doesn't make much sense to repeat
+# it.
+#
+# Note, however, that the binary-compatible API doesn't mean all the builds of
+# SQLite are binary-compatible since they can be built with different sets of
+# enabled/disabled functionality. In fact, one easy way to break backwards-
+# compatibility is to disable some feature that was previously enabled.
+#
+# So what we seem to need is not an ABI version but an ABI id that identifies
+# a specific set of features. And this will not be easy/possible if we want
+# to use platform-native versioning (e.g., libsqlite3.so.<num> on Linux). The
+# only way to make this work would be to "reserve" some range for build2-based
+# builds (e.g., 1000-2000 so that we will have libsqlite3.so.1000; that sure
+# looks weird).
+#
+# Another alternative is to use platform-neutral versioning by embedding the
+# id into the library name, similar to '3'. This is probably better since
+# there is no "newer" semantics here. While ideally we should use something
+# like -build2-0 (i.e., "build2 build, id 0"), that will look rather ugly. So
+# we will use just the number but start with -1 in order not to clash with .0
+# used by the autotools build (which becomes -0 on, e.g., Windows; I don't
+# believe it will ever be incremented though).
+#
+abi_major = 1
+
+using version
+using config
+using dist
+using test
+using install
diff --git a/libsqlite3/build/export.build b/libsqlite3/build/export.build
new file mode 100644
index 0000000..b0b5a9e
--- /dev/null
+++ b/libsqlite3/build/export.build
@@ -0,0 +1,9 @@
+# file : build/export.build
+# copyright : not copyrighted - public domain
+
+$out_root/
+{
+ include libsqlite3/
+}
+
+export $out_root/libsqlite3/lib{sqlite3}
diff --git a/libsqlite3/build/root.build b/libsqlite3/build/root.build
new file mode 100644
index 0000000..5146e5c
--- /dev/null
+++ b/libsqlite3/build/root.build
@@ -0,0 +1,13 @@
+# file : build/root.build
+# copyright : not copyrighted - public domain
+
+using c
+
+h{*}: extension = h
+c{*}: extension = c
+
+if ($c.class == 'msvc')
+{
+ c.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+ c.coptions += /wd4251 /wd4275 /wd4800
+}