|
||||
File indexing completed on 2025-01-17 09:56:09
0001 /* tiffvers.h version information is updated according to version information 0002 * in configure.ac */ 0003 0004 /* clang-format off */ 0005 0006 /* clang-format disabled because FindTIFF.cmake is very sensitive to the 0007 * formatting of below line being a single line. 0008 * Furthermore, configure_file variables of type "" are 0009 * modified by clang-format and won't be substituted by CMake. 0010 */ 0011 #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 0012 /* 0013 * This define can be used in code that requires 0014 * compilation-related definitions specific to a 0015 * version or versions of the library. Runtime 0016 * version checking should be done based on the 0017 * string returned by TIFFGetVersion. 0018 */ 0019 #define TIFFLIB_VERSION 20240911 0020 0021 /* The following defines have been added in 4.5.0 */ 0022 #define TIFFLIB_MAJOR_VERSION 4 0023 #define TIFFLIB_MINOR_VERSION 7 0024 #define TIFFLIB_MICRO_VERSION 0 0025 #define TIFFLIB_VERSION_STR_MAJ_MIN_MIC "4.7.0" 0026 0027 /* Macro added in 4.5.0. Returns TRUE if the current libtiff version is 0028 * greater or equal to major.minor.micro 0029 */ 0030 #define TIFFLIB_AT_LEAST(major, minor, micro) \ 0031 (TIFFLIB_MAJOR_VERSION > (major) || \ 0032 (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION > (minor)) || \ 0033 (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION == (minor) && \ 0034 TIFFLIB_MICRO_VERSION >= (micro))) 0035 0036 /* clang-format on */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |