diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 693d36f887f..5569fe64ae5 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -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 | diff --git a/Ports/sqlite/package.sh b/Ports/sqlite/package.sh index 02ad1eb5aae..7ee8c55c81b 100755 --- a/Ports/sqlite/package.sh +++ b/Ports/sqlite/package.sh @@ -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' diff --git a/Ports/sqlite/patches/0002-Disable-vfs-locking.patch b/Ports/sqlite/patches/0002-Disable-vfs-locking.patch index 93538a9cb59..f1284fc7270 100644 --- a/Ports/sqlite/patches/0002-Disable-vfs-locking.patch +++ b/Ports/sqlite/patches/0002-Disable-vfs-locking.patch @@ -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