From 018586c2aad72ee2944105d443ec98eb02aa8974 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 29 Jan 2020 23:08:12 +0300 Subject: Release version 3.27.2+1 Enable zlib usage Stop using cc.poptions variable as it now come after c.poptions --- libsqlite3/libsqlite3/buildfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libsqlite3/libsqlite3') 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 -- cgit v1.1