summaryrefslogtreecommitdiffstats
path: root/package/sqlite
Commit message (Collapse)AuthorAgeFilesLines
* package/sqlite: security bump to version 3.25.3Peter Korsgaard2018-12-302-3/+3
| | | | | | | | | | | | | | | | | Fixes CVE-2018-20346: SQLite before 3.25.3, when the FTS3 extension is enabled, encounters an integer overflow (and resultant buffer overflow) for FTS3 queries that occur after crafted changes to FTS3 shadow tables, allowing remote attackers to execute arbitrary code by leveraging the ability to run arbitrary SQL statements (such as in certain WebSQL use cases), aka Magellan. For more details, see: https://blade.tencent.com/magellan/index_en.html https://www.sqlite.org/releaselog/3_25_3.html https://www.mail-archive.com/sqlite-users@mailinglists.sqlite.org/msg113218.html Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* sqlite: fix build without threadsFabrice Fontaine2018-09-301-0/+1
| | | | | | | | | | | | | | | If threads are not available, set SQLITE_THREADSAFE to 0. Indeed, since version 3.25.0, the following line: THREADSAFE_FLAGS=-DSQLITE_THREADSAFE=0 has been removed from configure.ac As a result, SQLITE_THREADSAFE will be set to a default value of 1 even if --disable-threadsafe is set Fixes: - http://autobuild.buildroot.org/results/70b1582edcb787746e4483e80b27f86ac781f0fa Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.25.2Ferdinand van Aartsen2018-09-302-3/+3
| | | | | Signed-off-by: Ferdinand van Aartsen <ferdinand@ombud.nl> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.25.1Ferdinand van Aartsen2018-09-252-5/+5
| | | | | | | Make use of https for sqlite.org. Signed-off-by: Ferdinand van Aartsen <ferdinand@ombud.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/sqlite: bump version to 3.24.0Bernd Kuhls2018-06-102-3/+3
| | | | | | | | | Release notes: https://www.sqlite.org/releaselog/3_24_0.html https://www.sqlite.org/releaselog/3_23_1.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* sqlite: avoid use of unsupported -Ofast CFLAGSJoshua Henderson2018-04-151-1/+4
| | | | | | | | | | | | | sqlite3 refuses to be built with -ffast-math (a side effect of -Ofast) when it falls back to implementing its own isnan() function. sqlite3.c: In function ‘sqlite3IsNaN’: sqlite3.c:28554:3: error: #error SQLite will not work correctly with the -ffast-math option of GCC. To work around this, when -Ofast is used replace with -O3. Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* sqlite: add option for meta-data about tables/queriesPeter Seiderer2018-04-012-0/+11
| | | | | | | | | | | | | | Enables SQLITE_ENABLE_COLUMN_METADATA to gain access to: - sqlite3_column_database_name() - sqlite3_column_database_name16() - sqlite3_column_table_name() - sqlite3_column_table_name16() - sqlite3_column_origin_name() - sqlite3_column_origin_name16() Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/sqlite: bump version to 3220000 (3.22.0)Scott Fan2018-02-052-4/+4
| | | | | Signed-off-by: Scott Fan <fancp2007@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/*/Config.in: fix help text check-package warningsThomas Petazzoni2017-12-181-27/+29
| | | | | | | | | | | | | This commit fixes the warnings reported by check-package on the help text of all package Config.in files, related to the formatting of the help text: should start with a tab, then 2 spaces, then at most 62 characters. The vast majority of warnings fixed were caused by too long lines. A few warnings were related to spaces being used instead of a tab to indent the help text. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.21.0Baruch Siach2017-10-314-85/+5
| | | | | | | | | Drop upstream patches. Add license file hash. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: add security patchesBaruch Siach2017-10-222-0/+82
| | | | | | | | | | | | | | | CVE-2017-13685: The dump_callback function in SQLite 3.20.0 allows remote attackers to cause a denial of service (EXC_BAD_ACCESS and application crash) via a crafted file. CVE-2017-15286: SQLite 3.20.1 has a NULL pointer dereference in tableColumnList in shell.c because it fails to consider certain cases where `sqlite3_step(pStmt)==SQLITE_ROW` is false and a data structure is never initialized. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sqlite: bump version to 3.20.1Bernd Kuhls2017-09-032-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sqlite: bump version to 3200000 (3.20.0)Bernd Kuhls2017-08-092-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* sqlite: add json1 supportBradford Barr2017-07-022-0/+10
| | | | | | | | Add support for the JSON1 SQLite extensions. This extension allows SQLite to store and query JSON objects in a database. Signed-off-by: Bradford Barr <bradford@density.io> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3190300Adam Duskett2017-06-212-3/+3
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3190200 (3.19.2)Vicente Olivert Riera2017-05-262-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3180000 (3.18.0)Vicente Olivert Riera2017-04-032-2/+2
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.17.0Gustavo Zacarias2017-02-152-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.16.2Gustavo Zacarias2017-01-092-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.16.1Gustavo Zacarias2017-01-042-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.16Gustavo Zacarias2017-01-032-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump version to 3150200 (3.15.2)Vicente Olivert Riera2016-11-292-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump version to 3150100 (3.15.1)Vicente Olivert Riera2016-11-072-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3150000 (3.15.0)Vicente Olivert Riera2016-10-152-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3140200 (3.14.2)Vicente Olivert Riera2016-09-132-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump version to 3.14.0Vicente Olivert Riera2016-08-092-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3.13.0Vicente Olivert Riera2016-05-232-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump version to 3120200Vicente Olivert Riera2016-04-202-3/+3
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.12.1Gustavo Zacarias2016-04-082-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.12.0Gustavo Zacarias2016-03-302-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.11.1Gustavo Zacarias2016-03-032-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sqlite: add optional support for libeditBernd Kuhls2016-02-232-10/+6
| | | | | | Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.11.0Gustavo Zacarias2016-02-162-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sqlite: Fix readline supportBernd Kuhls2016-01-231-1/+1
| | | | | | | Fixes https://bugs.busybox.net/show_bug.cgi?id=8621#c0 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sqlite: Dynamically link libsqlite.so to bin/sqlite3Bernd Kuhls2016-01-231-0/+2
| | | | | | | | | | | | | Fixes https://bugs.busybox.net/show_bug.cgi?id=8621#c1 Lonnie Abelbeck wrote: "recently sqlite changed it's default behavior wrt the sqlite CLI tool, previously it was dynamically linked with libsqlite3.so.0 by default, now it is statically linked by default. The old behavior can be signaled with: --disable-static-shell" Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sqlite: Disable autoreconfBernd Kuhls2016-01-231-3/+0
| | | | | | | | Currently we have no patches for this package, compilation works without autoreconf. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.10.2Gustavo Zacarias2016-01-202-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.10.1Gustavo Zacarias2016-01-142-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.10.0Gustavo Zacarias2016-01-082-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: add license filePeter Rosin2015-11-251-0/+1
| | | | | | | Signed-off-by: Peter Rosin <peda@axentia.se> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.9.2Gustavo Zacarias2015-11-032-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.9.1Gustavo Zacarias2015-10-192-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sqlite: bump to version 3.9.0Gustavo Zacarias2015-10-142-2/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.8.11.1Gustavo Zacarias2015-07-302-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.8.11Gustavo Zacarias2015-07-273-24/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: Add host build supportClayton Shotwell2015-06-171-0/+1
| | | | | | | | Host sqlite is required by the host build of the setools package which is required for SELinux support. Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: bump to version 3.8.10.2Gustavo Zacarias2015-06-022-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sqlite: fix parallel build failuresYann E. MORIN2015-05-212-0/+25
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: security bump to 3.8.10Peter Korsgaard2015-05-082-2/+2
| | | | | | | | | Fixes: CVE-2015-3414, CVE-2015-3415 and CVE-2015-3416. For details, see the Debian advisory: https://www.debian.org/security/2015/dsa-3252 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sqlite: bump version to 3.8.9Bernd Kuhls2015-04-112-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud