Skip to content

Commit abe2103

Browse files
committed
Snapshot of upstream SQLite 3.44.2
1 parent cc74415 commit abe2103

Some content is hidden

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

41 files changed

+2495
-1342
lines changed

Makefile.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,6 +1137,8 @@ SHELL_SRC = \
11371137
$(TOP)/src/shell.c.in \
11381138
$(TOP)/ext/misc/appendvfs.c \
11391139
$(TOP)/ext/misc/completion.c \
1140+
$(TOP)/ext/consio/console_io.c \
1141+
$(TOP)/ext/consio/console_io.h \
11401142
$(TOP)/ext/misc/decimal.c \
11411143
$(TOP)/ext/misc/basexx.c \
11421144
$(TOP)/ext/misc/base64.c \

Makefile.msc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2261,6 +2261,8 @@ keywordhash.h: $(TOP)\tool\mkkeywordhash.c mkkeywordhash.exe
22612261
# Source files that go into making shell.c
22622262
SHELL_SRC = \
22632263
$(TOP)\src\shell.c.in \
2264+
$(TOP)\ext\consio\console_io.c \
2265+
$(TOP)\ext\consio\console_io.h \
22642266
$(TOP)\ext\misc\appendvfs.c \
22652267
$(TOP)\ext\misc\completion.c \
22662268
$(TOP)\ext\misc\base64.c \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.44.0
1+
3.44.2

autoconf/tea/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dnl to configure the system for the local environment.
1919
# so that we create the export library with the dll.
2020
#-----------------------------------------------------------------------
2121

22-
AC_INIT([sqlite],[3.44.0])
22+
AC_INIT([sqlite],[3.44.2])
2323

2424
#--------------------------------------------------------------------
2525
# Call TEA_INIT as the first TEA_ macro to set up initial vars.

configure

Lines changed: 9 additions & 9 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.44.0.
3+
# Generated by GNU Autoconf 2.69 for sqlite 3.44.2.
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.44.0'
730-
PACKAGE_STRING='sqlite 3.44.0'
729+
PACKAGE_VERSION='3.44.2'
730+
PACKAGE_STRING='sqlite 3.44.2'
731731
PACKAGE_BUGREPORT=''
732732
PACKAGE_URL=''
733733

@@ -1472,7 +1472,7 @@ if test "$ac_init_help" = "long"; then
14721472
# Omit some internal or obsolete options to make the list less imposing.
14731473
# This message is too long to be a string in the A/UX 3.1 sh.
14741474
cat <<_ACEOF
1475-
\`configure' configures sqlite 3.44.0 to adapt to many kinds of systems.
1475+
\`configure' configures sqlite 3.44.2 to adapt to many kinds of systems.
14761476
14771477
Usage: $0 [OPTION]... [VAR=VALUE]...
14781478
@@ -1537,7 +1537,7 @@ fi
15371537

15381538
if test -n "$ac_init_help"; then
15391539
case $ac_init_help in
1540-
short | recursive ) echo "Configuration of sqlite 3.44.0:";;
1540+
short | recursive ) echo "Configuration of sqlite 3.44.2:";;
15411541
esac
15421542
cat <<\_ACEOF
15431543
@@ -1668,7 +1668,7 @@ fi
16681668
test -n "$ac_init_help" && exit $ac_status
16691669
if $ac_init_version; then
16701670
cat <<\_ACEOF
1671-
sqlite configure 3.44.0
1671+
sqlite configure 3.44.2
16721672
generated by GNU Autoconf 2.69
16731673
16741674
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2087,7 +2087,7 @@ cat >config.log <<_ACEOF
20872087
This file contains any messages produced by compilers while
20882088
running configure, to aid debugging if configure makes a mistake.
20892089
2090-
It was created by sqlite $as_me 3.44.0, which was
2090+
It was created by sqlite $as_me 3.44.2, which was
20912091
generated by GNU Autoconf 2.69. Invocation command line was
20922092
20932093
$ $0 $@
@@ -12481,7 +12481,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1248112481
# report actual input values of CONFIG_FILES etc. instead of their
1248212482
# values after options handling.
1248312483
ac_log="
12484-
This file was extended by sqlite $as_me 3.44.0, which was
12484+
This file was extended by sqlite $as_me 3.44.2, which was
1248512485
generated by GNU Autoconf 2.69. Invocation command line was
1248612486
1248712487
CONFIG_FILES = $CONFIG_FILES
@@ -12547,7 +12547,7 @@ _ACEOF
1254712547
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1254812548
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1254912549
ac_cs_version="\\
12550-
sqlite config.status 3.44.0
12550+
sqlite config.status 3.44.2
1255112551
configured by $0, generated by GNU Autoconf 2.69,
1255212552
with options \\"\$ac_cs_config\\"
1255312553

0 commit comments

Comments
 (0)