Bump bundled SQLite version to 3.46.1

This commit is contained in:
gwenn
2024-08-14 19:07:03 +02:00
parent 09bd40b3f1
commit dc3a285085
5 changed files with 90 additions and 84 deletions

View File

@@ -9,7 +9,7 @@ export SQLITE3_LIB_DIR="$SCRIPT_DIR/sqlite3"
mkdir -p "$TARGET_DIR" "$SQLITE3_LIB_DIR"
# Download and extract amalgamation
SQLITE=sqlite-amalgamation-3460000
SQLITE=sqlite-amalgamation-3460100
curl -O https://sqlite.org/2024/$SQLITE.zip
unzip -p "$SQLITE.zip" "$SQLITE/sqlite3.c" > "$SQLITE3_LIB_DIR/sqlite3.c"
unzip -p "$SQLITE.zip" "$SQLITE/sqlite3.h" > "$SQLITE3_LIB_DIR/sqlite3.h"