Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* libtiff/tiffconf.h. Generated by configure. */ | 1 /* libtiff/tiffconf.h. Generated by configure. */ |
|
Nico
2016/03/11 16:35:01
This is a generated file -- I don't know if we rer
| |
| 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 #include "core/include/fxcrt/fx_system.h" | 10 #include "core/include/fxcrt/fx_system.h" |
| 11 | 11 |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 32 | 32 |
| 33 /* Define as 0 or 1 according to the floating point format suported by the | 33 /* Define as 0 or 1 according to the floating point format suported by the |
| 34 machine */ | 34 machine */ |
| 35 #define HAVE_IEEEFP 1 | 35 #define HAVE_IEEEFP 1 |
| 36 | 36 |
| 37 /* Define to 1 if you have the <string.h> header file. */ | 37 /* Define to 1 if you have the <string.h> header file. */ |
| 38 //#define HAVE_STRING_H 1 | 38 //#define HAVE_STRING_H 1 |
| 39 //fx_system.h already include the string.h in ANSIC | 39 //fx_system.h already include the string.h in ANSIC |
| 40 | 40 |
| 41 /* Define to 1 if you have the <search.h> header file. */ | 41 /* Define to 1 if you have the <search.h> header file. */ |
| 42 /*#define HAVE_SEARCH_H 1 */ | 42 #if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ && _MSC_VER >= 1900 |
| 43 // search.h is always available in VS 2015 and above, and may be | |
| 44 // available in earlier versions. | |
| 45 #define HAVE_SEARCH_H 1 | |
| 46 #endif | |
| 43 | 47 |
| 44 /* The size of a `int', as computed by sizeof. */ | 48 /* The size of a `int', as computed by sizeof. */ |
| 45 /* According typedef int int32_t; in the fx_system.h*/ | 49 /* According typedef int int32_t; in the fx_system.h*/ |
| 46 #define SIZEOF_INT 4 | 50 #define SIZEOF_INT 4 |
| 47 | 51 |
| 48 /* Sunliang.Liu 20110325. We should config the correct long size for tif | 52 /* Sunliang.Liu 20110325. We should config the correct long size for tif |
| 49 fax4decode optimize in tif_fax3.c -- Linux64 decode issue. | 53 fax4decode optimize in tif_fax3.c -- Linux64 decode issue. |
| 50 TESTDOC: Bug #23661 - z1.tif. */ | 54 TESTDOC: Bug #23661 - z1.tif. */ |
| 51 #if _FX_CPU_ == _FX_WIN64_ || _FX_CPU_ == _FX_X64_ || _FX_CPU_ == _FX_IA64_ | 55 #if _FX_CPU_ == _FX_WIN64_ || _FX_CPU_ == _FX_X64_ || _FX_CPU_ == _FX_IA64_ |
| 52 /* The size of `unsigned long', as computed by sizeof. */ | 56 /* The size of `unsigned long', as computed by sizeof. */ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 239 * Macros stays here for backward compatibility and should be always defined. | 243 * Macros stays here for backward compatibility and should be always defined. |
| 240 */ | 244 */ |
| 241 #define COLORIMETRY_SUPPORT | 245 #define COLORIMETRY_SUPPORT |
| 242 #define YCBCR_SUPPORT | 246 #define YCBCR_SUPPORT |
| 243 #define CMYK_SUPPORT | 247 #define CMYK_SUPPORT |
| 244 #define ICC_SUPPORT | 248 #define ICC_SUPPORT |
| 245 #define PHOTOSHOP_SUPPORT | 249 #define PHOTOSHOP_SUPPORT |
| 246 #define IPTC_SUPPORT | 250 #define IPTC_SUPPORT |
| 247 | 251 |
| 248 #endif /* _TIFFCONF_ */ | 252 #endif /* _TIFFCONF_ */ |
| OLD | NEW |