/* libtiff/tif_config.h. Generated from tif_config.h.in by configure. */1/* clang-format off */2/* clang-format disabled because CMake scripts are very sensitive to the3* formatting of this file. configure_file variables of type "@VAR@" are4* modified by clang-format and won't be substituted.5*/67/* libtiff/tif_config.h.in. Not generated, but originated from autoheader. */89#include "tiffconf.h"1011/* Support CCITT Group 3 & 4 algorithms */12#define CCITT_SUPPORT 11314/* Pick up YCbCr subsampling info from the JPEG data stream to support files15lacking the tag (default enabled). */16#define CHECK_JPEG_YCBCR_SUBSAMPLING 11718/* enable partial strip reading for large strips (experimental) */19/* #undef CHUNKY_STRIP_READ_SUPPORT */2021/* Support C++ stream API (requires C++ compiler) */22/* #undef CXX_SUPPORT */2324/* enable deferred strip/tile offset/size loading */25/* #undef DEFER_STRILE_LOAD */2627/* Define to 1 if you have the <assert.h> header file. */28#define HAVE_ASSERT_H 12930/* Define to 1 if you have the declaration of `optarg', and to 0 if you don't.31*/32/* #undef HAVE_DECL_OPTARG */3334/* Define to 1 if you have the <fcntl.h> header file. */35#define HAVE_FCNTL_H 13637/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */38#define HAVE_FSEEKO 13940/* Define to 1 if you have the `getopt' function. */41/* #undef HAVE_GETOPT */4243/* Define to 1 if you have the <GLUT/glut.h> header file. */44/* #undef HAVE_GLUT_GLUT_H */4546/* Define to 1 if you have the <GL/glut.h> header file. */47/* #undef HAVE_GL_GLUT_H */4849/* Define to 1 if you have the <GL/glu.h> header file. */50/* #undef HAVE_GL_GLU_H */5152/* Define to 1 if you have the <GL/gl.h> header file. */53/* #undef HAVE_GL_GL_H */5455/* Define to 1 if you have the <io.h> header file. */56#define HAVE_IO_H 15758/* Define to 1 if you have the `jbg_newlen' function. */59/* #undef HAVE_JBG_NEWLEN */6061/* Define to 1 if you have the `mmap' function. */62/* #undef HAVE_MMAP */6364/* Define to 1 if you have the <OpenGL/glu.h> header file. */65/* #undef HAVE_OPENGL_GLU_H */6667/* Define to 1 if you have the <OpenGL/gl.h> header file. */68/* #undef HAVE_OPENGL_GL_H */6970/* Define to 1 if you have the `setmode' function. */71#define HAVE_SETMODE 17273/* Define to 1 if you have the `snprintf' function. */74/* #undef HAVE_SNPRINTF */7576/* Define to 1 if you have the <strings.h> header file. */77#define HAVE_STRINGS_H 17879/* Define to 1 if you have the <sys/types.h> header file. */80#define HAVE_SYS_TYPES_H 18182/* Define to 1 if you have the <unistd.h> header file. */83#define HAVE_UNISTD_H 18485/* 8/12 bit libjpeg dual mode enabled */86/* #undef JPEG_DUAL_MODE_8_12 */8788/* 8/12 bit dual mode JPEG built into libjpeg-turbo 3.0+ */89/* #undef HAVE_JPEGTURBO_DUAL_MODE_8_12 */9091/* Support LERC compression */92/* #undef LERC_SUPPORT */9394/* Define to 1 when building a static libtiff with LERC enabled. */95/* #undef LERC_STATIC */9697/* 12bit libjpeg primary include file with path */98/* #undef LIBJPEG_12_PATH */99100/* Support LZMA2 compression */101/* #undef LZMA_SUPPORT */102103/* Name of package */104#define PACKAGE "tiff"105106/* Define to the address where bug reports for this package should be sent. */107#define PACKAGE_BUGREPORT "[email protected]"108109/* Define to the full name of this package. */110#define PACKAGE_NAME "LibTIFF Software"111112/* Define to the one symbol short name of this package. */113#define PACKAGE_TARNAME "tiff"114115/* Define to the home page for this package. */116#define PACKAGE_URL ""117118/* The size of `size_t', as computed by sizeof. */119#ifdef _WIN64120#define SIZEOF_SIZE_T 8121#else122#define SIZEOF_SIZE_T 4123#endif124125/* Default size of the strip in bytes (when strip chopping enabled) */126#define STRIP_SIZE_DEFAULT 8192127128/* Maximum number of TIFF IFDs that libtiff can iterate through in a file. */129#define TIFF_MAX_DIR_COUNT 1048576130131/* define to use win32 IO system */132#define USE_WIN32_FILEIO 1133134/* Support webp compression */135/* #undef WEBP_SUPPORT */136137/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most138significant byte first (like Motorola and SPARC, unlike Intel). */139#if defined AC_APPLE_UNIVERSAL_BUILD140# if defined __BIG_ENDIAN__141# define WORDS_BIGENDIAN 1142# endif143#else144# ifndef WORDS_BIGENDIAN145/* # undef WORDS_BIGENDIAN */146# endif147#endif148149/* Support zstd compression */150/* #undef ZSTD_SUPPORT */151152/* Enable large inode numbers on Mac OS X 10.5. */153#ifndef _DARWIN_USE_64_BIT_INODE154# define _DARWIN_USE_64_BIT_INODE 1155#endif156157/* Number of bits in a file offset, on hosts where this is settable. */158#define _FILE_OFFSET_BITS 64159160/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */161/* #undef _LARGEFILE_SOURCE */162163/* Define for large files, on AIX-style hosts. */164/* #undef _LARGE_FILES */165166#if !defined(__MINGW32__)167# define TIFF_SIZE_FORMAT "zu"168#endif169#if SIZEOF_SIZE_T == 8170# define TIFF_SSIZE_FORMAT PRId64171# if defined(__MINGW32__)172# define TIFF_SIZE_FORMAT PRIu64173# endif174#elif SIZEOF_SIZE_T == 4175# define TIFF_SSIZE_FORMAT PRId32176# if defined(__MINGW32__)177# define TIFF_SIZE_FORMAT PRIu32178# endif179#else180# error "Unsupported size_t size; please submit a bug report"181#endif182183/* clang-format on */184185186