From 10921ed8bdfa9346cc4d60e2c2fae159dcbcd19b Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Mon, 1 Nov 2021 21:52:20 +0100 Subject: Fix STRIPCHOP_DEFAULT value in CMake builds CMake builds erroneously used value 1 instead of TIFF_STRIPCHOP, which resulted in strip chopping not being enabled by default. --- libtiff/tiffconf.h.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtiff/tiffconf.h.cmake.in b/libtiff/tiffconf.h.cmake.in index 66ab3541..5afbf3b2 100644 --- a/libtiff/tiffconf.h.cmake.in +++ b/libtiff/tiffconf.h.cmake.in @@ -95,7 +95,7 @@ /* Support strip chopping (whether or not to convert single-strip uncompressed images to multiple strips of ~8Kb to reduce memory usage) */ -#cmakedefine STRIPCHOP_DEFAULT 1 +#cmakedefine STRIPCHOP_DEFAULT TIFF_STRIPCHOP /* Enable SubIFD tag (330) support */ #cmakedefine SUBIFD_SUPPORT 1 -- cgit v1.2.1