Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing 'tiff:endian' image property (#347)
`HAVE_TIFFISBIGENDIAN` macro was removed in d0b6b48, but the macro was still used for a conditional block in `tiff.c` responsible for setting the `tiff:endian` image property. The macro was never set, essentially disabling this functionality. We can safely remove the conditional compilation and assume `TIFFIsBigEndian` is always available: we require at least libtiff 4.0.0, while `TIFFIsBigEndian` was added in 3.7.0.
- Loading branch information