1/*
2  Configuration defines for installed libtiff.
3  This file maintained for backward compatibility. Do not use definitions
4  from this file in your programs.
5*/
6
7#ifndef _TIFFCONF_
8#define _TIFFCONF_
9
10/* Signed 16-bit type */
11#undef TIFF_INT16_T
12
13/* Signed 32-bit type */
14#undef TIFF_INT32_T
15
16/* Signed 64-bit type */
17#undef TIFF_INT64_T
18
19/* Signed 8-bit type */
20#undef TIFF_INT8_T
21
22/* Unsigned 16-bit type */
23#undef TIFF_UINT16_T
24
25/* Unsigned 32-bit type */
26#undef TIFF_UINT32_T
27
28/* Unsigned 64-bit type */
29#undef TIFF_UINT64_T
30
31/* Unsigned 8-bit type */
32#undef TIFF_UINT8_T
33
34/* Signed size type */
35#undef TIFF_SSIZE_T
36
37/* Pointer difference type */
38#undef TIFF_PTRDIFF_T
39
40/* Compatibility stuff. */
41
42/* Define as 0 or 1 according to the floating point format suported by the
43   machine */
44#undef HAVE_IEEEFP
45
46/* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
47#undef HOST_FILLORDER
48
49/* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
50   (Intel) */
51#undef HOST_BIGENDIAN
52
53/* Support CCITT Group 3 & 4 algorithms */
54#undef CCITT_SUPPORT
55
56/* Support JPEG compression (requires IJG JPEG library) */
57#undef JPEG_SUPPORT
58
59/* Support JBIG compression (requires JBIG-KIT library) */
60#undef JBIG_SUPPORT
61
62/* Support LogLuv high dynamic range encoding */
63#undef LOGLUV_SUPPORT
64
65/* Support LZW algorithm */
66#undef LZW_SUPPORT
67
68/* Support NeXT 2-bit RLE algorithm */
69#undef NEXT_SUPPORT
70
71/* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
72   fails with unpatched IJG JPEG library) */
73#undef OJPEG_SUPPORT
74
75/* Support Macintosh PackBits algorithm */
76#undef PACKBITS_SUPPORT
77
78/* Support Pixar log-format algorithm (requires Zlib) */
79#undef PIXARLOG_SUPPORT
80
81/* Support ThunderScan 4-bit RLE algorithm */
82#undef THUNDER_SUPPORT
83
84/* Support Deflate compression */
85#undef ZIP_SUPPORT
86
87/* Support strip chopping (whether or not to convert single-strip uncompressed
88   images to mutiple strips of ~8Kb to reduce memory usage) */
89#undef STRIPCHOP_DEFAULT
90
91/* Enable SubIFD tag (330) support */
92#undef SUBIFD_SUPPORT
93
94/* Treat extra sample as alpha (default enabled). The RGBA interface will
95   treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
96   packages produce RGBA files but don't mark the alpha properly. */
97#undef DEFAULT_EXTRASAMPLE_AS_ALPHA
98
99/* Pick up YCbCr subsampling info from the JPEG data stream to support files
100   lacking the tag (default enabled). */
101#undef CHECK_JPEG_YCBCR_SUBSAMPLING
102
103/* Support MS MDI magic number files as TIFF */
104#undef MDI_SUPPORT
105
106/*
107 * Feature support definitions.
108 * XXX: These macros are obsoleted. Don't use them in your apps!
109 * Macros stays here for backward compatibility and should be always defined.
110 */
111#define COLORIMETRY_SUPPORT
112#define YCBCR_SUPPORT
113#define CMYK_SUPPORT
114#define ICC_SUPPORT
115#define PHOTOSHOP_SUPPORT
116#define IPTC_SUPPORT
117
118#endif /* _TIFFCONF_ */
119