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 /* Define to 1 if the system has the type `int16'. */
11 /* #undef HAVE_INT16 */
12 
13 /* Define to 1 if the system has the type `int32'. */
14 /* #undef HAVE_INT32 */
15 
16 /* Define to 1 if the system has the type `int8'. */
17 /* #undef HAVE_INT8 */
18 
19 /* The size of a `int', as computed by sizeof. */
20 #define SIZEOF_INT 4
21 
22 /* Signed 8-bit type */
23 #define TIFF_INT8_T signed char
24 
25 /* Unsigned 8-bit type */
26 #define TIFF_UINT8_T unsigned char
27 
28 /* Signed 16-bit type */
29 #define TIFF_INT16_T signed short
30 
31 /* Unsigned 16-bit type */
32 #define TIFF_UINT16_T unsigned short
33 
34 /* Signed 32-bit type formatter */
35 #define TIFF_INT32_FORMAT "%d"
36 
37 /* Signed 32-bit type */
38 #define TIFF_INT32_T signed int
39 
40 /* Unsigned 32-bit type formatter */
41 #define TIFF_UINT32_FORMAT "%u"
42 
43 /* Unsigned 32-bit type */
44 #define TIFF_UINT32_T unsigned int
45 
46 /* Signed 64-bit type formatter */
47 #define TIFF_INT64_FORMAT "%I64d"
48 
49 /* Signed 64-bit type */
50 #define TIFF_INT64_T signed __int64
51 
52 /* Unsigned 64-bit type formatter */
53 #define TIFF_UINT64_FORMAT "%I64u"
54 
55 /* Unsigned 64-bit type */
56 #define TIFF_UINT64_T unsigned __int64
57 
58 #if _WIN64
59 /*
60   Windows 64-bit build
61 */
62 
63 /* Signed size type */
64 #  define TIFF_SSIZE_T TIFF_INT64_T
65 
66 #else
67 /*
68   Windows 32-bit build
69 */
70 
71 /* Signed size type */
72 #  define TIFF_SSIZE_T signed int
73 
74 #endif
75 
76 /* Compatibility stuff. */
77 
78 /* Define as 0 or 1 according to the floating point format suported by the
79    machine */
80 #define HAVE_IEEEFP 1
81 
82 /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
83 #define HOST_FILLORDER FILLORDER_LSB2MSB
84 
85 /* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
86    (Intel) */
87 #define HOST_BIGENDIAN 0
88 
89 /* Support CCITT Group 3 & 4 algorithms */
90 #define CCITT_SUPPORT 1
91 
92 /* Support JPEG compression (requires IJG JPEG library) */
93 /* #undef JPEG_SUPPORT */
94 
95 /* Support JBIG compression (requires JBIG-KIT library) */
96 /* #undef JBIG_SUPPORT */
97 
98 /* Support LogLuv high dynamic range encoding */
99 #define LOGLUV_SUPPORT 1
100 
101 /* Support LZW algorithm */
102 #define LZW_SUPPORT 1
103 
104 /* Support NeXT 2-bit RLE algorithm */
105 #define NEXT_SUPPORT 1
106 
107 /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
108    fails with unpatched IJG JPEG library) */
109 /* #undef OJPEG_SUPPORT */
110 
111 /* Support Macintosh PackBits algorithm */
112 #define PACKBITS_SUPPORT 1
113 
114 /* Support Pixar log-format algorithm (requires Zlib) */
115 /* #undef PIXARLOG_SUPPORT */
116 
117 /* Support ThunderScan 4-bit RLE algorithm */
118 #define THUNDER_SUPPORT 1
119 
120 /* Support Deflate compression */
121 /* #undef ZIP_SUPPORT */
122 
123 /* Support strip chopping (whether or not to convert single-strip uncompressed
124    images to mutiple strips of ~8Kb to reduce memory usage) */
125 #define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
126 
127 /* Enable SubIFD tag (330) support */
128 #define SUBIFD_SUPPORT 1
129 
130 /* Treat extra sample as alpha (default enabled). The RGBA interface will
131    treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
132    packages produce RGBA files but don't mark the alpha properly. */
133 #define DEFAULT_EXTRASAMPLE_AS_ALPHA 1
134 
135 /* Pick up YCbCr subsampling info from the JPEG data stream to support files
136    lacking the tag (default enabled). */
137 #define CHECK_JPEG_YCBCR_SUBSAMPLING 1
138 
139 /* Support MS MDI magic number files as TIFF */
140 /* #undef MDI_SUPPORT */
141 
142 /*
143  * Feature support definitions.
144  * XXX: These macros are obsoleted. Don't use them in your apps!
145  * Macros stays here for backward compatibility and should be always defined.
146  */
147 #define COLORIMETRY_SUPPORT
148 #define YCBCR_SUPPORT
149 #define CMYK_SUPPORT
150 #define ICC_SUPPORT
151 #define PHOTOSHOP_SUPPORT
152 #define IPTC_SUPPORT
153 
154 #endif /* _TIFFCONF_ */
155 /*
156  * Local Variables:
157  * mode: c
158  * c-basic-offset: 8
159  * fill-column: 78
160  * End:
161  */
162