[sqlite3] Add feature recovery (#39424)

This commit is contained in:
jim wang 2024-07-02 18:13:28 +00:00 committed by GitHub
parent ba66be1691
commit 8b2599ca2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 2 deletions

View File

@ -36,6 +36,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
vcpkg_check_features(OUT_FEATURE_OPTIONS none # only using the script-mode side-effects
FEATURES
dbstat SQLITE_ENABLE_DBSTAT_VTAB
dbpage-vtab SQLITE_ENABLE_DBPAGE_VTAB
fts3 SQLITE_ENABLE_FTS3
fts4 SQLITE_ENABLE_FTS4
memsys3 SQLITE_ENABLE_MEMSYS3

View File

@ -17,6 +17,7 @@
#cmakedefine SQLITE_ENABLE_MEMSYS5
#cmakedefine SQLITE_ENABLE_MATH_FUNCTIONS
#cmakedefine SQLITE_ENABLE_UPDATE_DELETE_LIMIT
#cmakedefine SQLITE_ENABLE_DBPAGE_VTAB
#cmakedefine SQLITE_ENABLE_RTREE
#cmakedefine SQLITE_ENABLE_SESSION
#cmakedefine SQLITE_ENABLE_SNAPSHOT

View File

@ -1,7 +1,7 @@
{
"name": "sqlite3",
"version": "3.46.0",
"port-version": 1,
"port-version": 2,
"description": "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.",
"homepage": "https://sqlite.org/",
"license": "blessing",
@ -19,6 +19,9 @@
"json1"
],
"features": {
"dbpage-vtab": {
"description": "Enable the recovery extension"
},
"dbstat": {
"description": "Enable the DBSTAT virtual table"
},

View File

@ -8446,7 +8446,7 @@
},
"sqlite3": {
"baseline": "3.46.0",
"port-version": 1
"port-version": 2
},
"sqlitecpp": {
"baseline": "3.3.1",

View File

@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "54f7fe82339d8c8d79ff2cffd1751084fef85bfc",
"version": "3.46.0",
"port-version": 2
},
{
"git-tree": "234ced2fde5397c2a92a05e9fa0311ce24fde568",
"version": "3.46.0",