/* libtiff/tif_config.h.cmake.in. Not generated, but originated from autoheader. */ /* This file must be kept up-to-date with needed substitutions from libtiff/tif_config.h.in. */ #include "tiffconf.h" /* Support CCITT Group 3 & 4 algorithms */ #define CCITT_SUPPORT 1 /* Pick up YCbCr subsampling info from the JPEG data stream to support files lacking the tag (default enabled). */ /* #undef CHECK_JPEG_YCBCR_SUBSAMPLING */ /* enable partial strip reading for large strips (experimental) */ /* #undef CHUNKY_STRIP_READ_SUPPORT */ /* Support C++ stream API (requires C++ compiler) */ /* #undef CXX_SUPPORT */ /* enable deferred strip/tile offset/size loading (experimental) */ /* #undef DEFER_STRILE_LOAD */ /* Define to 1 if you have the header file. */ #define HAVE_ASSERT_H 1 /* Define to 1 if you have the declaration of `optarg', and to 0 if you don't. */ #define HAVE_DECL_OPTARG 1 /* Define to 1 if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ /* #undef HAVE_FSEEKO */ /* Define to 1 if you have the `getopt' function. */ #define HAVE_GETOPT 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_GLUT_GLUT_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_GL_GLUT_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_GL_GLU_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_GL_GL_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_IO_H */ /* Define to 1 if you have the `jbg_newlen' function. */ /* #undef HAVE_JBG_NEWLEN */ /* Define to 1 if you have the `mmap' function. */ #define HAVE_MMAP 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_OPENGL_GLU_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_OPENGL_GL_H */ /* Define to 1 if you have the `setmode' function. */ #define HAVE_SETMODE 1 /* Define to 1 if you have the header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 /* 8/12 bit libjpeg dual mode enabled */ /* #undef JPEG_DUAL_MODE_8_12 */ /* Support LERC compression */ /* #undef LERC_SUPPORT */ /* 12bit libjpeg primary include file with path */ #define LIBJPEG_12_PATH "" /* Support LZMA2 compression */ /* #undef LZMA_SUPPORT */ /* Name of package */ #define PACKAGE "LibTIFF Software" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "tiff@lists.maptools.org" /* Define to the full name of this package. */ #define PACKAGE_NAME "LibTIFF Software" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "LibTIFF Software 4.1.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "tiff" /* Define to the home page for this package. */ #define PACKAGE_URL "" /* Define to the version of this package. */ #define PACKAGE_VERSION "4.1.0" /* Size of size_t */ #define SIZEOF_SIZE_T 8 /* Default size of the strip in bytes (when strip chopping enabled) */ #define STRIP_SIZE_DEFAULT 8192 /* define to use win32 IO system */ /* #undef USE_WIN32_FILEIO */ /* Version number of package */ #define VERSION "4.1.0" /* Support WEBP compression */ /* #undef WEBP_SUPPORT */ /* Support ZSTD compression */ /* #undef ZSTD_SUPPORT */ /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ #if defined AC_APPLE_UNIVERSAL_BUILD # if defined __BIG_ENDIAN__ # define WORDS_BIGENDIAN 1 # endif #else # ifndef WORDS_BIGENDIAN # undef WORDS_BIGENDIAN # endif #endif #if !defined(__MINGW32__) # define TIFF_SIZE_FORMAT "zu" #endif #if SIZEOF_SIZE_T == 8 # define TIFF_SSIZE_FORMAT PRId64 # if defined(__MINGW32__) # define TIFF_SIZE_FORMAT PRIu64 # endif #elif SIZEOF_SIZE_T == 4 # define TIFF_SSIZE_FORMAT PRId32 # if defined(__MINGW32__) # define TIFF_SIZE_FORMAT PRIu32 # endif #else # error "Unsupported size_t size; please submit a bug report" #endif