Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:30:24

0001 /* clang-format off */
0002 
0003 /* clang-format disabled because FindTIFF.cmake is very sensitive to the
0004  * formatting of below line being a single line.
0005  */
0006 #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.5.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
0007 /*
0008  * This define can be used in code that requires
0009  * compilation-related definitions specific to a
0010  * version or versions of the library.  Runtime
0011  * version checking should be done based on the
0012  * string returned by TIFFGetVersion.
0013  */
0014 #define TIFFLIB_VERSION 20230609
0015 
0016 /* The following defines have been added in 4.5.0 */
0017 #define TIFFLIB_MAJOR_VERSION 4
0018 #define TIFFLIB_MINOR_VERSION 5
0019 #define TIFFLIB_MICRO_VERSION 1
0020 
0021 /* Macro added in 4.5.0. Returns TRUE if the current libtiff version is
0022  * greater or equal to major.minor.micro
0023  */
0024 #define TIFFLIB_AT_LEAST(major, minor, micro) \
0025     (TIFFLIB_MAJOR_VERSION > (major) || \
0026      (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION > (minor)) || \
0027      (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION == (minor) && \
0028       TIFFLIB_MICRO_VERSION >= (micro)))
0029 
0030 /* clang-format on */