Merge branch 'size_t_typo' into 'master'

CMakeLists.txt: fix TIFF_SIZE_T

See merge request libtiff/libtiff!59
This commit is contained in:
Even Rouault 2019-02-19 13:56:12 +00:00
commit 28f67ba4bd

View File

@ -342,7 +342,7 @@ elseif(SIZEOF_UNSIGNED_LONG EQUAL SIZEOF_SIZE_T)
set(TIFF_SIZE_T "unsigned long") set(TIFF_SIZE_T "unsigned long")
set(TIFF_SIZE_FORMAT "%lu") set(TIFF_SIZE_FORMAT "%lu")
elseif(SIZEOF_UNSIGNED_LONG_LONG EQUAL SIZEOF_SIZE_T) elseif(SIZEOF_UNSIGNED_LONG_LONG EQUAL SIZEOF_SIZE_T)
set(TIFF_SIZE_T "unsigned long") set(TIFF_SIZE_T "unsigned long long")
if (MINGW) if (MINGW)
set(TIFF_SIZE_FORMAT "%I64u") set(TIFF_SIZE_FORMAT "%I64u")
else() else()