mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-14 13:40:47 +08:00
[sqlite3] Add feature recovery (#39424)
This commit is contained in:
parent
ba66be1691
commit
8b2599ca2a
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
},
|
||||
|
@ -8446,7 +8446,7 @@
|
||||
},
|
||||
"sqlite3": {
|
||||
"baseline": "3.46.0",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"sqlitecpp": {
|
||||
"baseline": "3.3.1",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "54f7fe82339d8c8d79ff2cffd1751084fef85bfc",
|
||||
"version": "3.46.0",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "234ced2fde5397c2a92a05e9fa0311ce24fde568",
|
||||
"version": "3.46.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user