Skip to content

Commit

Permalink
Ports/sqlite: Update sqlite to version 3430000
Browse files Browse the repository at this point in the history
  • Loading branch information
EWouters authored and gmta committed Oct 12, 2023
1 parent 86c74a5 commit 1bf80c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Ports/AvailablePorts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions Ports/sqlite/package.sh
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 3 additions & 3 deletions Ports/sqlite/patches/0002-Disable-vfs-locking.patch
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ 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[] = {
+ UNIXVFS("unix-none", nolockIoFinder ),
#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
Expand Down

0 comments on commit 1bf80c9

Please sign in to comment.