Ports/sqlite: Update sqlite to version 3430000

This commit is contained in:
EWouters 2023-09-02 01:27:07 +02:00 committed by Jelle Raaijmakers
parent 86c74a5f3f
commit 1bf80c9ab3
Notes: sideshowbarker 2024-07-17 09:56:35 +09:00
3 changed files with 6 additions and 6 deletions

View File

@ -302,7 +302,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`soltys`](soltys/) | Soltys | 1.0 | https://www.scummvm.org/games/#games-soltys |
| [`sparsehash`](sparsehash/) | Google's C++ associative containers | 2.0.4 | https://github.com/sparsehash/sparsehash |
| [`speexdsp`](speexdsp/) | Speex audio processing library | 1.2.1 | https://www.speex.org/ |
| [`sqlite`](sqlite/) | SQLite | 3410200 | https://www.sqlite.org/ |
| [`sqlite`](sqlite/) | SQLite | 3430000 | https://www.sqlite.org/ |
| [`ssmtp`](ssmtp/) | sSMTP is a simple MTA | 2.64-11 | https://wiki.debian.org/sSMTP |
| [`stb`](stb/) | stb single-file public domain libraries for C/C++ | af1a5bc | https://github.com/nothings/stb |
| [`stockfish`](stockfish/) | Stockfish: A free and strong UCI chess engine | 16 | https://github.com/official-stockfish/Stockfish |

View File

@ -1,8 +1,8 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='sqlite'
version='3410200'
version='3430000'
files=(
"https://www.sqlite.org/2023/sqlite-autoconf-${version}.tar.gz#e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499"
"https://www.sqlite.org/2023/sqlite-autoconf-${version}.tar.gz#49008dbf3afc04d4edc8ecfc34e4ead196973034293c997adad2f63f01762ae1"
)
useconfigure='true'
use_fresh_config_sub='true'

View File

@ -8,10 +8,10 @@ Subject: [PATCH] Disable vfs locking
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sqlite3.c b/sqlite3.c
index 0b227f0..90c38bd 100644
index 310583f996c07c065f1ba658cad94e8f07b67aa5..5ab33091ab074c2b934cf1d872b93d73c077c88e 100644
--- a/sqlite3.c
+++ b/sqlite3.c
@@ -42840,6 +42840,7 @@ SQLITE_API int sqlite3_os_init(void){
@@ -45706,6 +45706,7 @@ SQLITE_API int sqlite3_os_init(void){
** array cannot be const.
*/
static sqlite3_vfs aVfs[] = {
@ -19,7 +19,7 @@ index 0b227f0..90c38bd 100644
#if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__)
UNIXVFS("unix", autolockIoFinder ),
#elif OS_VXWORKS
@@ -42847,7 +42848,6 @@ SQLITE_API int sqlite3_os_init(void){
@@ -45713,7 +45714,6 @@ SQLITE_API int sqlite3_os_init(void){
#else
UNIXVFS("unix", posixIoFinder ),
#endif