Skip to content

Commit 718beb4

Browse files
committed
Snapshot of upstream SQLite 3.34.1
1 parent 56e5656 commit 718beb4

File tree

152 files changed

+4655
-1290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+4655
-1290
lines changed

Makefile.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ TESTSRC += \
441441
$(TOP)/ext/expert/test_expert.c \
442442
$(TOP)/ext/misc/amatch.c \
443443
$(TOP)/ext/misc/carray.c \
444+
$(TOP)/ext/misc/cksumvfs.c \
444445
$(TOP)/ext/misc/closure.c \
445446
$(TOP)/ext/misc/csv.c \
446447
$(TOP)/ext/misc/decimal.c \
@@ -1086,6 +1087,7 @@ SHELL_SRC = \
10861087
$(TOP)/ext/misc/decimal.c \
10871088
$(TOP)/ext/misc/fileio.c \
10881089
$(TOP)/ext/misc/ieee754.c \
1090+
$(TOP)/ext/misc/series.c \
10891091
$(TOP)/ext/misc/shathree.c \
10901092
$(TOP)/ext/misc/sqlar.c \
10911093
$(TOP)/ext/misc/uint.c \
@@ -1232,6 +1234,7 @@ TESTFIXTURE_FLAGS += -DSQLITE_ENABLE_STMTVTAB
12321234
TESTFIXTURE_FLAGS += -DSQLITE_ENABLE_DBPAGE_VTAB
12331235
TESTFIXTURE_FLAGS += -DSQLITE_ENABLE_BYTECODE_VTAB
12341236
TESTFIXTURE_FLAGS += -DSQLITE_ENABLE_DESERIALIZE
1237+
TESTFIXTURE_FLAGS += -DSQLITE_CKSUMVFS_STATIC
12351238

12361239
TESTFIXTURE_SRC0 = $(TESTSRC2) libsqlite3.la
12371240
TESTFIXTURE_SRC1 = sqlite3.c

Makefile.msc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1558,6 +1558,7 @@ TESTEXT = \
15581558
$(TOP)\ext\expert\test_expert.c \
15591559
$(TOP)\ext\misc\amatch.c \
15601560
$(TOP)\ext\misc\carray.c \
1561+
$(TOP)\ext\misc\cksumvfs.c \
15611562
$(TOP)\ext\misc\closure.c \
15621563
$(TOP)\ext\misc\csv.c \
15631564
$(TOP)\ext\misc\decimal.c \
@@ -2208,6 +2209,7 @@ SHELL_SRC = \
22082209
$(TOP)\ext\misc\decimal.c \
22092210
$(TOP)\ext\misc\fileio.c \
22102211
$(TOP)\ext\misc\ieee754.c \
2212+
$(TOP)\ext\misc\series.c \
22112213
$(TOP)\ext\misc\shathree.c \
22122214
$(TOP)\ext\misc\uint.c \
22132215
$(TOP)\ext\expert\sqlite3expert.c \
@@ -2386,6 +2388,7 @@ TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_ENABLE_DBPAGE_VTAB=1
23862388
TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_ENABLE_BYTECODE_VTAB=1
23872389
TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_ENABLE_JSON1=1
23882390
TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_ENABLE_DESERIALIZE=1
2391+
TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_CKSUMVFS_STATIC=1
23892392
TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) $(TEST_CCONV_OPTS)
23902393

23912394
TESTFIXTURE_SRC0 = $(TESTEXT) $(TESTSRC2)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.33.0
1+
3.34.1

autoconf/tea/win/makefile.vc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Please `cd` to its location first.
153153
#
154154
#-------------------------------------------------------------------------
155155

156-
PROJECT = tclsqlite3
156+
PROJECT = sqlite3
157157
!include "rules.vc"
158158

159159
# nmakehelp -V <file> <tag> will search the file for tag, skips until a

configure

Lines changed: 23 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for sqlite 3.33.0.
3+
# Generated by GNU Autoconf 2.69 for sqlite 3.34.1.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -726,8 +726,8 @@ MAKEFLAGS=
726726
# Identity of this package.
727727
PACKAGE_NAME='sqlite'
728728
PACKAGE_TARNAME='sqlite'
729-
PACKAGE_VERSION='3.33.0'
730-
PACKAGE_STRING='sqlite 3.33.0'
729+
PACKAGE_VERSION='3.34.1'
730+
PACKAGE_STRING='sqlite 3.34.1'
731731
PACKAGE_BUGREPORT=''
732732
PACKAGE_URL=''
733733

@@ -799,7 +799,6 @@ TEMP_STORE
799799
ALLOWRELEASE
800800
SQLITE_THREADSAFE
801801
BUILD_CC
802-
VERSION_NUMBER
803802
RELEASE
804803
VERSION
805804
program_prefix
@@ -1467,7 +1466,7 @@ if test "$ac_init_help" = "long"; then
14671466
# Omit some internal or obsolete options to make the list less imposing.
14681467
# This message is too long to be a string in the A/UX 3.1 sh.
14691468
cat <<_ACEOF
1470-
\`configure' configures sqlite 3.33.0 to adapt to many kinds of systems.
1469+
\`configure' configures sqlite 3.34.1 to adapt to many kinds of systems.
14711470
14721471
Usage: $0 [OPTION]... [VAR=VALUE]...
14731472
@@ -1532,7 +1531,7 @@ fi
15321531

15331532
if test -n "$ac_init_help"; then
15341533
case $ac_init_help in
1535-
short | recursive ) echo "Configuration of sqlite 3.33.0:";;
1534+
short | recursive ) echo "Configuration of sqlite 3.34.1:";;
15361535
esac
15371536
cat <<\_ACEOF
15381537
@@ -1659,7 +1658,7 @@ fi
16591658
test -n "$ac_init_help" && exit $ac_status
16601659
if $ac_init_version; then
16611660
cat <<\_ACEOF
1662-
sqlite configure 3.33.0
1661+
sqlite configure 3.34.1
16631662
generated by GNU Autoconf 2.69
16641663
16651664
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2078,7 +2077,7 @@ cat >config.log <<_ACEOF
20782077
This file contains any messages produced by compilers while
20792078
running configure, to aid debugging if configure makes a mistake.
20802079
2081-
It was created by sqlite $as_me 3.33.0, which was
2080+
It was created by sqlite $as_me 3.34.1, which was
20822081
generated by GNU Autoconf 2.69. Invocation command line was
20832082
20842083
$ $0 $@
@@ -3936,13 +3935,13 @@ if ${lt_cv_nm_interface+:} false; then :
39363935
else
39373936
lt_cv_nm_interface="BSD nm"
39383937
echo "int some_variable = 0;" > conftest.$ac_ext
3939-
(eval echo "\"\$as_me:3939: $ac_compile\"" >&5)
3938+
(eval echo "\"\$as_me:3938: $ac_compile\"" >&5)
39403939
(eval "$ac_compile" 2>conftest.err)
39413940
cat conftest.err >&5
3942-
(eval echo "\"\$as_me:3942: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
3941+
(eval echo "\"\$as_me:3941: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
39433942
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
39443943
cat conftest.err >&5
3945-
(eval echo "\"\$as_me:3945: output\"" >&5)
3944+
(eval echo "\"\$as_me:3944: output\"" >&5)
39463945
cat conftest.out >&5
39473946
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
39483947
lt_cv_nm_interface="MS dumpbin"
@@ -5148,7 +5147,7 @@ ia64-*-hpux*)
51485147
;;
51495148
*-*-irix6*)
51505149
# Find out which ABI we are using.
5151-
echo '#line 5151 "configure"' > conftest.$ac_ext
5150+
echo '#line 5150 "configure"' > conftest.$ac_ext
51525151
if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
51535152
(eval $ac_compile) 2>&5
51545153
ac_status=$?
@@ -6673,11 +6672,11 @@ else
66736672
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
66746673
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
66756674
-e 's:$: $lt_compiler_flag:'`
6676-
(eval echo "\"\$as_me:6676: $lt_compile\"" >&5)
6675+
(eval echo "\"\$as_me:6675: $lt_compile\"" >&5)
66776676
(eval "$lt_compile" 2>conftest.err)
66786677
ac_status=$?
66796678
cat conftest.err >&5
6680-
echo "$as_me:6680: \$? = $ac_status" >&5
6679+
echo "$as_me:6679: \$? = $ac_status" >&5
66816680
if (exit $ac_status) && test -s "$ac_outfile"; then
66826681
# The compiler can only warn and ignore the option if not recognized
66836682
# So say no if there are warnings other than the usual output.
@@ -7012,11 +7011,11 @@ else
70127011
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
70137012
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
70147013
-e 's:$: $lt_compiler_flag:'`
7015-
(eval echo "\"\$as_me:7015: $lt_compile\"" >&5)
7014+
(eval echo "\"\$as_me:7014: $lt_compile\"" >&5)
70167015
(eval "$lt_compile" 2>conftest.err)
70177016
ac_status=$?
70187017
cat conftest.err >&5
7019-
echo "$as_me:7019: \$? = $ac_status" >&5
7018+
echo "$as_me:7018: \$? = $ac_status" >&5
70207019
if (exit $ac_status) && test -s "$ac_outfile"; then
70217020
# The compiler can only warn and ignore the option if not recognized
70227021
# So say no if there are warnings other than the usual output.
@@ -7117,11 +7116,11 @@ else
71177116
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
71187117
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
71197118
-e 's:$: $lt_compiler_flag:'`
7120-
(eval echo "\"\$as_me:7120: $lt_compile\"" >&5)
7119+
(eval echo "\"\$as_me:7119: $lt_compile\"" >&5)
71217120
(eval "$lt_compile" 2>out/conftest.err)
71227121
ac_status=$?
71237122
cat out/conftest.err >&5
7124-
echo "$as_me:7124: \$? = $ac_status" >&5
7123+
echo "$as_me:7123: \$? = $ac_status" >&5
71257124
if (exit $ac_status) && test -s out/conftest2.$ac_objext
71267125
then
71277126
# The compiler can only warn and ignore the option if not recognized
@@ -7172,11 +7171,11 @@ else
71727171
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
71737172
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
71747173
-e 's:$: $lt_compiler_flag:'`
7175-
(eval echo "\"\$as_me:7175: $lt_compile\"" >&5)
7174+
(eval echo "\"\$as_me:7174: $lt_compile\"" >&5)
71767175
(eval "$lt_compile" 2>out/conftest.err)
71777176
ac_status=$?
71787177
cat out/conftest.err >&5
7179-
echo "$as_me:7179: \$? = $ac_status" >&5
7178+
echo "$as_me:7178: \$? = $ac_status" >&5
71807179
if (exit $ac_status) && test -s out/conftest2.$ac_objext
71817180
then
71827181
# The compiler can only warn and ignore the option if not recognized
@@ -9552,7 +9551,7 @@ else
95529551
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
95539552
lt_status=$lt_dlunknown
95549553
cat > conftest.$ac_ext <<_LT_EOF
9555-
#line 9555 "configure"
9554+
#line 9554 "configure"
95569555
#include "confdefs.h"
95579556
95589557
#if HAVE_DLFCN_H
@@ -9648,7 +9647,7 @@ else
96489647
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
96499648
lt_status=$lt_dlunknown
96509649
cat > conftest.$ac_ext <<_LT_EOF
9651-
#line 9651 "configure"
9650+
#line 9650 "configure"
96529651
#include "confdefs.h"
96539652
96549653
#if HAVE_DLFCN_H
@@ -10388,12 +10387,6 @@ RELEASE=`cat $srcdir/VERSION`
1038810387
{ $as_echo "$as_me:${as_lineno-$LINENO}: Release set to $RELEASE" >&5
1038910388
$as_echo "$as_me: Release set to $RELEASE" >&6;}
1039010389

10391-
VERSION_NUMBER=`cat $srcdir/VERSION \
10392-
| sed 's/[^0-9]/ /g' \
10393-
| awk '{printf "%d%03d%03d",$1,$2,$3}'`
10394-
{ $as_echo "$as_me:${as_lineno-$LINENO}: Version number set to $VERSION_NUMBER" >&5
10395-
$as_echo "$as_me: Version number set to $VERSION_NUMBER" >&6;}
10396-
1039710390

1039810391
#########
1039910392
# Locate a compiler for the build machine. This compiler should
@@ -12243,7 +12236,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1224312236
# report actual input values of CONFIG_FILES etc. instead of their
1224412237
# values after options handling.
1224512238
ac_log="
12246-
This file was extended by sqlite $as_me 3.33.0, which was
12239+
This file was extended by sqlite $as_me 3.34.1, which was
1224712240
generated by GNU Autoconf 2.69. Invocation command line was
1224812241
1224912242
CONFIG_FILES = $CONFIG_FILES
@@ -12309,7 +12302,7 @@ _ACEOF
1230912302
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1231012303
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1231112304
ac_cs_version="\\
12312-
sqlite config.status 3.33.0
12305+
sqlite config.status 3.34.1
1231312306
configured by $0, generated by GNU Autoconf 2.69,
1231412307
with options \\"\$ac_cs_config\\"
1231512308

configure.ac

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,6 @@ AC_SUBST(VERSION)
155155
RELEASE=`cat $srcdir/VERSION`
156156
AC_MSG_NOTICE(Release set to $RELEASE)
157157
AC_SUBST(RELEASE)
158-
VERSION_NUMBER=[`cat $srcdir/VERSION \
159-
| sed 's/[^0-9]/ /g' \
160-
| awk '{printf "%d%03d%03d",$1,$2,$3}'`]
161-
AC_MSG_NOTICE(Version number set to $VERSION_NUMBER)
162-
AC_SUBST(VERSION_NUMBER)
163158

164159
#########
165160
# Locate a compiler for the build machine. This compiler should

0 commit comments

Comments
 (0)