mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 06:51:48 +08:00
0e1107ce62
* [tiff] Patch for CVE-2022-0561 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0561 for more details * [tiff] Patch for CVE-2022-0562 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0562 for more details * [tiff] Patch for CVE-2022-0865 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0865 for more details * [tiff] Patch for CVE-2022-0891 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0891 for more details * [tiff] Patch for CVE-2022-0907 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0907 for more details * [tiff] Patch for CVE-2022-0908 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0908 for more details * [tiff] Patch for CVE-2022-0909 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0909 for more details * [tiff] Patch for CVE-2022-0924 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-0924 for more details * [tiff] Patch for CVE-2022-22844 (microsoft#24120) See https://nvd.nist.gov/vuln/detail/CVE-2022-22844 for more details * [tiff] bump portversion and regenerate registries (microsoft#24120)
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"name": "tiff",
|
|
"version": "4.3.0",
|
|
"port-version": 8,
|
|
"description": "A library that supports the manipulation of TIFF image files",
|
|
"homepage": "https://libtiff.gitlab.io/libtiff/",
|
|
"license": null,
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"jpeg",
|
|
"lzma",
|
|
"zip"
|
|
],
|
|
"features": {
|
|
"cxx": {
|
|
"description": "Build C++ libtiffxx library",
|
|
"supports": "!arm"
|
|
},
|
|
"jpeg": {
|
|
"description": "Support JPEG compression in TIFF image files",
|
|
"dependencies": [
|
|
"libjpeg-turbo"
|
|
]
|
|
},
|
|
"lzma": {
|
|
"description": "Support LZMA compression in TIFF image files",
|
|
"dependencies": [
|
|
"liblzma"
|
|
]
|
|
},
|
|
"tools": {
|
|
"description": "Build tools"
|
|
},
|
|
"webp": {
|
|
"description": "Support WEBP compression in TIFF image files",
|
|
"dependencies": [
|
|
"libwebp"
|
|
]
|
|
},
|
|
"zip": {
|
|
"description": "Support ZIP/deflate compression in TIFF image files",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
},
|
|
"zstd": {
|
|
"description": "Support ZSTD compression in TIFF image files",
|
|
"dependencies": [
|
|
"zstd"
|
|
]
|
|
}
|
|
}
|
|
}
|