mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 10:31:38 +08:00
5d675c7e5f
Fixes #37012 Update `poco` to the latest version 1.13.2 - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] 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: Jon <v-zhli17@microsoft.com>
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
|
"name": "poco",
|
|
"version": "1.13.2",
|
|
"description": "Modern, powerful open source C++ class libraries for building network and internet-based applications that run on desktop, server, mobile and embedded systems.",
|
|
"homepage": "https://github.com/pocoproject/poco",
|
|
"license": "BSL-1.0",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"expat",
|
|
"pcre2",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"crypto": {
|
|
"description": "Crypto support",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"mariadb": {
|
|
"description": "MariaDB support for POCO",
|
|
"dependencies": [
|
|
"libmariadb"
|
|
]
|
|
},
|
|
"mysql": {
|
|
"description": "Mysql support for POCO",
|
|
"dependencies": [
|
|
"libmysql"
|
|
]
|
|
},
|
|
"netssl": {
|
|
"description": [
|
|
"NetSSL support for POCO",
|
|
"By default, this feature uses the OpenSSL implementation. The `POCO_ENABLE_NETSSL_WIN` triplet variable can be used to switch to the NetSSL_Win module."
|
|
],
|
|
"dependencies": [
|
|
{
|
|
"name": "poco",
|
|
"default-features": false,
|
|
"features": [
|
|
"crypto"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"pdf": {
|
|
"description": "Haru support for POCO",
|
|
"dependencies": [
|
|
"libharu"
|
|
]
|
|
},
|
|
"postgresql": {
|
|
"description": "PostgreSQL support for POCO",
|
|
"dependencies": [
|
|
"libpqxx"
|
|
]
|
|
},
|
|
"sqlite3": {
|
|
"description": "Sqlite3 support for POCO",
|
|
"dependencies": [
|
|
"sqlite3"
|
|
]
|
|
}
|
|
}
|
|
}
|