vcpkg/ports/apr-util/vcpkg.json
Victor Romero 94b63bd8f2
[apr-util] Add crypto feature and don't require OpenSSL if not needed (#27644)
* [apr-util] add crypto feature

* [apr-util] Use CMake variables to control OpenSSL

* [apr-util] remove disable find package
2022-11-07 15:34:34 -08:00

26 lines
618 B
JSON

{
"name": "apr-util",
"version": "1.6.1",
"port-version": 10,
"description": "Apache Portable Runtime (APR) project mission is to create and maintain software libraries that provide a predictable and consistent interface to underlying platform-specific implementation",
"homepage": "https://apr.apache.org/",
"license": "Apache-2.0",
"dependencies": [
"apr",
"expat",
{
"name": "vcpkg-cmake",
"host": true,
"platform": "windows"
}
],
"features": {
"crypto": {
"description": "Crypto support",
"dependencies": [
"openssl"
]
}
}
}