vcpkg/ports/libssh/vcpkg.json
Billy O'Neal c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. (#22770)
* Bulk remove vcpkg_fail_port_install calls.

Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",

In support of https://github.com/microsoft/vcpkg/pull/21502

* Update version database.

* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728

* Repair version database.
2022-01-25 10:31:15 -08:00

71 lines
1.4 KiB
JSON

{
"name": "libssh",
"version": "0.9.6",
"port-version": 2,
"description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
"homepage": "https://www.libssh.org/",
"supports": "!(uwp | arm)",
"dependencies": [
{
"name": "libssh",
"default-features": false,
"features": [
"mbedtls"
],
"platform": "android"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"crypto"
],
"features": {
"crypto": {
"description": "Default crypto backend",
"dependencies": [
{
"name": "libssh",
"features": [
"mbedtls"
]
}
]
},
"mbedtls": {
"description": "Crypto support (mbedTLS)",
"dependencies": [
{
"name": "mbedtls",
"default-features": false
},
{
"name": "mbedtls",
"features": [
"pthreads"
],
"platform": "!android"
}
]
},
"openssl": {
"description": "Crypto support (OpenSSL)",
"dependencies": [
"openssl"
]
},
"zlib": {
"description": "libssh with zlib",
"dependencies": [
"zlib"
]
}
}
}