mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 04:20:28 +00:00
Ports/sqlite: Update sqlite to version 3430000
This commit is contained in:
parent
86c74a5f3f
commit
1bf80c9ab3
Notes:
sideshowbarker
2024-07-17 09:56:35 +09:00
Author: https://github.com/EWouters Commit: https://github.com/SerenityOS/serenity/commit/1bf80c9ab3 Pull-request: https://github.com/SerenityOS/serenity/pull/20901 Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/timschumi
3 changed files with 6 additions and 6 deletions
|
@ -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 |
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue