Updated libtiff to 4.5.1

This commit is contained in:
Andrew Murray 2023-06-27 13:51:17 +10:00
parent 5c3d93fb2c
commit 51cd79266d
2 changed files with 10 additions and 4 deletions

View File

@ -155,7 +155,7 @@ Many of Pillow's features require external libraries:
* **libtiff** provides compressed TIFF functionality * **libtiff** provides compressed TIFF functionality
* Pillow has been tested with libtiff versions **3.x** and **4.0-4.5** * Pillow has been tested with libtiff versions **3.x** and **4.0-4.5.1**
* **libfreetype** provides type related services * **libfreetype** provides type related services

View File

@ -186,9 +186,9 @@ deps = {
"libs": [r"output\release-static\{architecture}\lib\*.lib"], "libs": [r"output\release-static\{architecture}\lib\*.lib"],
}, },
"libtiff": { "libtiff": {
"url": "https://download.osgeo.org/libtiff/tiff-4.5.0.tar.gz", "url": "https://download.osgeo.org/libtiff/tiff-4.5.1.tar.gz",
"filename": "tiff-4.5.0.tar.gz", "filename": "tiff-4.5.1.tar.gz",
"dir": "tiff-4.5.0", "dir": "tiff-4.5.1",
"license": "LICENSE.md", "license": "LICENSE.md",
"patch": { "patch": {
r"libtiff\tif_lzma.c": { r"libtiff\tif_lzma.c": {
@ -199,6 +199,12 @@ deps = {
# link against webp.lib # link against webp.lib
"#ifdef WEBP_SUPPORT": '#ifdef WEBP_SUPPORT\n#pragma comment(lib, "webp.lib")', # noqa: E501 "#ifdef WEBP_SUPPORT": '#ifdef WEBP_SUPPORT\n#pragma comment(lib, "webp.lib")', # noqa: E501
}, },
r"test/CMakeLists.txt": {
"add_executable(test_write_read_tags ../placeholder.h)": "",
"target_sources(test_write_read_tags PRIVATE test_write_read_tags.c)": "", # noqa: E501
"target_link_libraries(test_write_read_tags PRIVATE tiff)": "",
"list(APPEND simple_tests test_write_read_tags)": "",
},
}, },
"build": [ "build": [
*cmds_cmake( *cmds_cmake(