mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 04:19:00 +08:00
[sqlite3] Ability to enable the DBSTAT eponymous virtual table (#30432)
This commit is contained in:
parent
d84a3ade16
commit
f60f31fc9e
@ -27,6 +27,7 @@ endif()
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS Unused
|
||||
FEATURES
|
||||
dbstat SQLITE_ENABLE_DBSTAT_VTAB
|
||||
fts3 SQLITE_ENABLE_FTS3
|
||||
fts4 SQLITE_ENABLE_FTS4
|
||||
fts5 SQLITE_ENABLE_FTS5
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "sqlite3",
|
||||
"version": "3.40.1",
|
||||
"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",
|
||||
@ -16,6 +16,9 @@
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
"dbstat": {
|
||||
"description": "Enable the DBSTAT virtual table"
|
||||
},
|
||||
"fts3": {
|
||||
"description": "Enable the FTS3 extension"
|
||||
},
|
||||
|
@ -7550,7 +7550,7 @@
|
||||
},
|
||||
"sqlite3": {
|
||||
"baseline": "3.40.1",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"sqlitecpp": {
|
||||
"baseline": "3.2.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "6bb52479b5ab874f6283e585a3bf2294f52966ca",
|
||||
"version": "3.40.1",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "a08d5bdc16bbeb6e156289d80416535f9cd0a073",
|
||||
"version": "3.40.1",
|
||||
|
Loading…
Reference in New Issue
Block a user