AWARE SYSTEMS
TIFF and LibTiff Mail List Archive

Thread

2018.11.10 19:39 "[Tiff] Libtiff 4.0.10 is now available", by Bob Friesenhahn
2018.11.10 21:24 "Re: [Tiff] Libtiff 4.0.10 is now available", by
2018.11.15 23:37 "[Tiff] vcpkg port for 4.0.10", by Roger Leigh
2018.11.19 15:21 "Re: [Tiff] vcpkg port for 4.0.10", by Edward Lam
2018.11.21 10:18 "Re: [Tiff] vcpkg port for 4.0.10", by Roger Leigh
2018.12.08 20:43 "[Tiff] Zlib inflate recovery action required?", by Bob Friesenhahn
2018.12.08 21:14 "Re: [Tiff] Zlib inflate recovery action required?", by Bob Friesenhahn
2018.12.08 21:22 "Re: [Tiff] Zlib inflate recovery action required?", by Olivier Paquet
2018.12.08 21:29 "Re: [Tiff] Zlib inflate recovery action required?", by Even Rouault
2018.12.08 21:42 "Re: [Tiff] Zlib inflate recovery action required?", by Bob Friesenhahn
2018.12.08 22:03 "Re: [Tiff] Zlib inflate recovery action required?", by Toby Thain

2018.11.15 23:37 "[Tiff] vcpkg port for 4.0.10", by Roger Leigh

Just as a point of interest for any developers on Windows. Microsoft's vcpkg repository (https://github.com/Microsoft/vcpkg) might be of use for simplifying building a collection of library dependencies for your projects, including libtiff. It's similar to the BSD ports collection, but it's all based around CMake scripts. So for libtiff, it just downloads the release and runs the cmake build.

Anyone can update it, though you do have to sign a CLA. This is the PR I opened for 4.0.10: https://github.com/Microsoft/vcpkg

Just clone the repository, run the bootstrap script, then

    vcpkg install tiff
or vcpkg install tiff:x64-windows

It's supposed to be cross-platform (for Linux and MacOS X at least), but it's a bit patchy for non-Windows platforms at present. Windows is always a pain, but this might make it a little easier (I replaced all my custom dependency management scripts with this).

Regards,

Roger