mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 17:39:01 +08:00
c30bf9d28c
Fixes #38700. Enable the sqlite3 feature `dbstat` and let `SQLITE_ENABLE_DBSTAT_VTAB` return `TRUE`: ![image](https://github.com/microsoft/vcpkg/assets/110024546/cfd99f66-c652-4761-82a9-81c91a36b0cc) - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] ~SHA512s are updated for each updated download.~ - [ ] ~The "supports" clause reflects platforms that may be fixed by this new version.~ - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [ ] ~Any patches that are no longer applied are deleted from the port's directory.~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "sqlite3",
|
|
"version": "3.45.3",
|
|
"port-version": 1,
|
|
"description": "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.",
|
|
"homepage": "https://sqlite.org/",
|
|
"license": "blessing",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"json1"
|
|
],
|
|
"features": {
|
|
"dbstat": {
|
|
"description": "Enable the DBSTAT virtual table"
|
|
},
|
|
"fts3": {
|
|
"description": "Enable the FTS3 extension"
|
|
},
|
|
"fts4": {
|
|
"description": "Enable the FTS4 extension"
|
|
},
|
|
"fts5": {
|
|
"description": "Enable the FTS5 extension"
|
|
},
|
|
"geopoly": {
|
|
"description": "Enable geopoly functionality for sqlite3"
|
|
},
|
|
"json1": {
|
|
"description": "Enable JSON functionality for sqlite3"
|
|
},
|
|
"limit": {
|
|
"description": "Enable the UPDATE/DELETE LIMIT clause"
|
|
},
|
|
"math": {
|
|
"description": "Enable math functions"
|
|
},
|
|
"memsys3": {
|
|
"description": "Enable MEMSYS3"
|
|
},
|
|
"memsys5": {
|
|
"description": "Enable MEMSYS5"
|
|
},
|
|
"omit-load-extension": {
|
|
"description": "Enable loading of external extensions"
|
|
},
|
|
"rtree": {
|
|
"description": "Enable the RTREE extension"
|
|
},
|
|
"session": {
|
|
"description": "Enable the SESSION extension"
|
|
},
|
|
"snapshot": {
|
|
"description": "Enable the snapshot function"
|
|
},
|
|
"soundex": {
|
|
"description": "Enable the SOUNDEX scalar function"
|
|
},
|
|
"tool": {
|
|
"description": "Build sqlite3 executable",
|
|
"supports": "!uwp"
|
|
},
|
|
"zlib": {
|
|
"description": "Build sqlite3 command line tool with zlib support; has no effect on the library itself",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
}
|
|
}
|
|
}
|