/src/FreeImage/Source/LibTIFF/tiffconf.h.in

https://bitbucket.org/cabalistic/ogredeps/ · Autoconf · 103 lines · 42 code · 28 blank · 33 comment · 8 complexity · f0d96eb843e80abfc36f645e6981318d MD5 · raw file

  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. #ifndef _TIFFCONF_
  7. #define _TIFFCONF_
  8. /* Define to 1 if the system has the type `int16'. */
  9. #undef HAVE_INT16
  10. /* Define to 1 if the system has the type `int32'. */
  11. #undef HAVE_INT32
  12. /* Define to 1 if the system has the type `int8'. */
  13. #undef HAVE_INT8
  14. /* The size of a `int', as computed by sizeof. */
  15. #undef SIZEOF_INT
  16. /* The size of a `long', as computed by sizeof. */
  17. #undef SIZEOF_LONG
  18. /* Compatibility stuff. */
  19. /* Define as 0 or 1 according to the floating point format suported by the
  20. machine */
  21. #undef HAVE_IEEEFP
  22. /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
  23. #undef HOST_FILLORDER
  24. /* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
  25. (Intel) */
  26. #undef HOST_BIGENDIAN
  27. /* Support CCITT Group 3 & 4 algorithms */
  28. #undef CCITT_SUPPORT
  29. /* Support JPEG compression (requires IJG JPEG library) */
  30. #undef JPEG_SUPPORT
  31. /* Support JBIG compression (requires JBIG-KIT library) */
  32. #undef JBIG_SUPPORT
  33. /* Support LogLuv high dynamic range encoding */
  34. #undef LOGLUV_SUPPORT
  35. /* Support LZW algorithm */
  36. #undef LZW_SUPPORT
  37. /* Support NeXT 2-bit RLE algorithm */
  38. #undef NEXT_SUPPORT
  39. /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
  40. fails with unpatched IJG JPEG library) */
  41. #undef OJPEG_SUPPORT
  42. /* Support Macintosh PackBits algorithm */
  43. #undef PACKBITS_SUPPORT
  44. /* Support Pixar log-format algorithm (requires Zlib) */
  45. #undef PIXARLOG_SUPPORT
  46. /* Support ThunderScan 4-bit RLE algorithm */
  47. #undef THUNDER_SUPPORT
  48. /* Support Deflate compression */
  49. #undef ZIP_SUPPORT
  50. /* Support strip chopping (whether or not to convert single-strip uncompressed
  51. images to mutiple strips of ~8Kb to reduce memory usage) */
  52. #undef STRIPCHOP_DEFAULT
  53. /* Enable SubIFD tag (330) support */
  54. #undef SUBIFD_SUPPORT
  55. /* Treat extra sample as alpha (default enabled). The RGBA interface will
  56. treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
  57. packages produce RGBA files but don't mark the alpha properly. */
  58. #undef DEFAULT_EXTRASAMPLE_AS_ALPHA
  59. /* Pick up YCbCr subsampling info from the JPEG data stream to support files
  60. lacking the tag (default enabled). */
  61. #undef CHECK_JPEG_YCBCR_SUBSAMPLING
  62. /* Support MS MDI magic number files as TIFF */
  63. #undef MDI_SUPPORT
  64. /*
  65. * Feature support definitions.
  66. * XXX: These macros are obsoleted. Don't use them in your apps!
  67. * Macros stays here for backward compatibility and should be always defined.
  68. */
  69. #define COLORIMETRY_SUPPORT
  70. #define YCBCR_SUPPORT
  71. #define CMYK_SUPPORT
  72. #define ICC_SUPPORT
  73. #define PHOTOSHOP_SUPPORT
  74. #define IPTC_SUPPORT
  75. #endif /* _TIFFCONF_ */