From c391008bed95a27b3e4ab837590564191c866541 Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Fri, 5 Apr 2024 18:58:21 +1100 Subject: [PATCH] allow 4.0.8 (this may fail) --- TIFF/Makefile.PL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TIFF/Makefile.PL b/TIFF/Makefile.PL index 82b6b4fa..a2b48280 100644 --- a/TIFF/Makefile.PL +++ b/TIFF/Makefile.PL @@ -173,8 +173,8 @@ else { } fprintf(stderr, "TIFF: library version %.*s, header version %ld\n", ver_len, ver_start, (long)TIFFLIB_VERSION); -if (TIFFLIB_VERSION < 20191103) { - fprintf(stderr, "TIFF: libtiff 4.1.0 or later required\n"); +if (TIFFLIB_VERSION < 20170521) { + fprintf(stderr, "TIFF: libtiff 4.0.8 or later required\n"); return 1; } return 0;