summaryrefslogtreecommitdiff
path: root/libsqlite3/libsqlite3
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-01-29 23:08:12 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-01-29 23:08:12 +0300
commit018586c2aad72ee2944105d443ec98eb02aa8974 (patch)
tree0a4585c2fde5f3e430ee6100a1bb2fc9a16bb387 /libsqlite3/libsqlite3
parent0a054f609f7022f7d27f59094041641b8b48b3d8 (diff)
Release version 3.27.2+1v3.27.2+1
Enable zlib usage Stop using cc.poptions variable as it now come after c.poptions
Diffstat (limited to 'libsqlite3/libsqlite3')
-rw-r--r--libsqlite3/libsqlite3/buildfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/libsqlite3/libsqlite3/buildfile b/libsqlite3/libsqlite3/buildfile
index c915442..73a3ba2 100644
--- a/libsqlite3/libsqlite3/buildfile
+++ b/libsqlite3/libsqlite3/buildfile
@@ -17,15 +17,14 @@ clang_msvc = ($c.id == 'clang' && $c.target.system == 'win32-msvc')
# the official documentation.
#
# Note that we "prefix" them to what might have been specified by the user so
-# that it is possible to override the defaults by specifying them as =0 (it's
-# also the reason we use cc.* instead of c.*, the former comes first).
+# that it is possible to override the defaults by specifying them as =0.
#
# PREUPDATE_HOOK is required by SESSION
#
# Note that if disabling any previously-released features, then will need to
# increment abi_major.
#
-cc.poptions =+ \
+c.poptions =+ \
-DSQLITE_ENABLE_COLUMN_METADATA=1 \
-DSQLITE_ENABLE_DBPAGE_VTAB=1 \
-DSQLITE_ENABLE_DBSTAT_VTAB=1 \
@@ -57,7 +56,7 @@ if! $windows
# Note that the upstream package normally defines a number of other HAVE_*
# macros, which we currently don't care about.
#
- cc.poptions =+ -DHAVE_USLEEP=1
+ c.poptions =+ -DHAVE_USLEEP=1
# SQLITE_THREADSAFE requres -lpthread
# SQLITE_ENABLE_LOAD_EXTENSION requires -ldl