| OLD | NEW |
| 1 /* libtiff/tiffconf.h. Generated by configure. */ | 1 /* libtiff/tiffconf.h. Generated by configure. */ |
| 2 /* | 2 /* |
| 3 Configuration defines for installed libtiff. | 3 Configuration defines for installed libtiff. |
| 4 This file maintained for backward compatibility. Do not use definitions | 4 This file maintained for backward compatibility. Do not use definitions |
| 5 from this file in your programs. | 5 from this file in your programs. |
| 6 */ | 6 */ |
| 7 #ifndef _TIFFCONF_ | 7 #ifndef _TIFFCONF_ |
| 8 #define _TIFFCONF_ | 8 #define _TIFFCONF_ |
| 9 | 9 |
| 10 #ifndef _FX_SYSTEM_H_ | 10 #ifndef _FX_SYSTEM_H_ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 /* Sunliang.Liu 20110325. We should config the correct long size for tif | 50 /* Sunliang.Liu 20110325. We should config the correct long size for tif |
| 51 fax4decode optimize in tif_fax3.c -- Linux64 decode issue. | 51 fax4decode optimize in tif_fax3.c -- Linux64 decode issue. |
| 52 TESTDOC: Bug #23661 - z1.tif. */ | 52 TESTDOC: Bug #23661 - z1.tif. */ |
| 53 #if _FX_CPU_ == _FX_WIN64_ || _FX_CPU_ == _FX_X64_ || _FX_CPU_ == _FX_IA64_ | 53 #if _FX_CPU_ == _FX_WIN64_ || _FX_CPU_ == _FX_X64_ || _FX_CPU_ == _FX_IA64_ |
| 54 /* The size of `unsigned long', as computed by sizeof. */ | 54 /* The size of `unsigned long', as computed by sizeof. */ |
| 55 #define SIZEOF_UNSIGNED_LONG 8 | 55 #define SIZEOF_UNSIGNED_LONG 8 |
| 56 #else | 56 #else |
| 57 #define SIZEOF_UNSIGNED_LONG 4 | 57 #define SIZEOF_UNSIGNED_LONG 4 |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 #define HAVE_SNPRINTF 1 |
| 61 |
| 60 /* Signed 8-bit type */ | 62 /* Signed 8-bit type */ |
| 61 #define TIFF_INT8_T signed char | 63 #define TIFF_INT8_T signed char |
| 62 | 64 |
| 63 /* Unsigned 8-bit type */ | 65 /* Unsigned 8-bit type */ |
| 64 #define TIFF_UINT8_T unsigned char | 66 #define TIFF_UINT8_T unsigned char |
| 65 | 67 |
| 66 /* Signed 16-bit type */ | 68 /* Signed 16-bit type */ |
| 67 #define TIFF_INT16_T signed short | 69 #define TIFF_INT16_T signed short |
| 68 | 70 |
| 69 /* Unsigned 16-bit type */ | 71 /* Unsigned 16-bit type */ |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 * Macros stays here for backward compatibility and should be always defined. | 243 * Macros stays here for backward compatibility and should be always defined. |
| 242 */ | 244 */ |
| 243 #define COLORIMETRY_SUPPORT | 245 #define COLORIMETRY_SUPPORT |
| 244 #define YCBCR_SUPPORT | 246 #define YCBCR_SUPPORT |
| 245 #define CMYK_SUPPORT | 247 #define CMYK_SUPPORT |
| 246 #define ICC_SUPPORT | 248 #define ICC_SUPPORT |
| 247 #define PHOTOSHOP_SUPPORT | 249 #define PHOTOSHOP_SUPPORT |
| 248 #define IPTC_SUPPORT | 250 #define IPTC_SUPPORT |
| 249 | 251 |
| 250 #endif /* _TIFFCONF_ */ | 252 #endif /* _TIFFCONF_ */ |
| OLD | NEW |