Skip to content

Commit

Permalink
TIFF: require libtiff 4.1.0 or later
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Nov 15, 2023
1 parent 8594c74 commit 4cabf9d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions TIFF/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,8 @@ else {
}
fprintf(stderr, "TIFF: library version %.*s, header version %ld\n", ver_len, ver_start, (long)TIFFLIB_VERSION);
if (TIFFLIB_VERSION == 20090820) {
fprintf(stderr, "TIFF: this appears to be libtiff 3.9.0 which introduced a serious bug\n");
fprintf(stderr, "TIFF: please install 3.9.1\n");
if (TIFFLIB_VERSION < 20191103) {
fprintf(stderr, "TIFF: libtiff 4.1.0 or later required\n");
return 1;
}
return 0;
Expand Down

0 comments on commit 4cabf9d

Please sign in to comment.