/* tiffvers.h version information is updated according to version information1* in configure.ac */23/* clang-format off */45/* clang-format disabled because FindTIFF.cmake is very sensitive to the6* formatting of below line being a single line.7* Furthermore, configure_file variables of type "@VAR@" are8* modified by clang-format and won't be substituted by CMake.9*/10#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."11/*12* This define can be used in code that requires13* compilation-related definitions specific to a14* version or versions of the library. Runtime15* version checking should be done based on the16* string returned by TIFFGetVersion.17*/18#define TIFFLIB_VERSION 202409111920/* The following defines have been added in 4.5.0 */21#define TIFFLIB_MAJOR_VERSION 422#define TIFFLIB_MINOR_VERSION 723#define TIFFLIB_MICRO_VERSION 024#define TIFFLIB_VERSION_STR_MAJ_MIN_MIC "4.7.0"2526/* Macro added in 4.5.0. Returns TRUE if the current libtiff version is27* greater or equal to major.minor.micro28*/29#define TIFFLIB_AT_LEAST(major, minor, micro) \30(TIFFLIB_MAJOR_VERSION > (major) || \31(TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION > (minor)) || \32(TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION == (minor) && \33TIFFLIB_MICRO_VERSION >= (micro)))3435/* clang-format on */363738