summaryrefslogtreecommitdiff
path: root/libsqlite3
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-06-10 14:36:43 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-06-10 14:36:43 +0300
commit12f23c3fa27d8d717ba14042a0c491bd53e40cd0 (patch)
tree456499e54385dac53e84a2d0118786ca33450e98 /libsqlite3
parent6e3b22b82c6bb7dc9bad0f56214121407dd65b28 (diff)
Release version 3.27.2+2v3.27.2+2
Raise maximum number of attached databases from 10 to 125 Canonicalize license in package manifests Normalize C comments in tests
Diffstat (limited to 'libsqlite3')
-rw-r--r--libsqlite3/libsqlite3/buildfile4
-rw-r--r--libsqlite3/manifest4
-rw-r--r--libsqlite3/test/driver.c3
3 files changed, 7 insertions, 4 deletions
diff --git a/libsqlite3/libsqlite3/buildfile b/libsqlite3/libsqlite3/buildfile
index 73a3ba2..70ce9c6 100644
--- a/libsqlite3/libsqlite3/buildfile
+++ b/libsqlite3/libsqlite3/buildfile
@@ -51,6 +51,10 @@ c.poptions =+ \
-DSQLITE_THREADSAFE=1 \
-DSQLITE_USE_URI=1
+# Raise the maximum number of attached databases from 10 up to the limit.
+#
+c.poptions =+ -DSQLITE_MAX_ATTACHED=125
+
if! $windows
{
# Note that the upstream package normally defines a number of other HAVE_*
diff --git a/libsqlite3/manifest b/libsqlite3/manifest
index 4bb435f..6030695 100644
--- a/libsqlite3/manifest
+++ b/libsqlite3/manifest
@@ -1,9 +1,9 @@
: 1
name: libsqlite3
-version: 3.27.2+1
+version: 3.27.2+2
project: sqlite
summary: SQL database engine as an in-process C library
-license: public domain
+license: blessing ; SQLite Blessing.
topics: C, SQLite, SQL, relational database
description-file: README
url: https://sqlite.org/
diff --git a/libsqlite3/test/driver.c b/libsqlite3/test/driver.c
index 2eabb06..d783e97 100644
--- a/libsqlite3/test/driver.c
+++ b/libsqlite3/test/driver.c
@@ -2,8 +2,7 @@
* copyright : not copyrighted - public domain
*/
-/*
- * Basic test to make sure the library is usable.
+/* Basic test to make sure the library is usable.
*/
#ifdef NDEBUG