Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. menuconfig BR2_PACKAGE_TIFF
  2. bool "tiff"
  3. help
  4. Library for handling TIFF (Tag Image File Format) images.
  5. http://simplesystems.org/libtiff/
  6. if BR2_PACKAGE_TIFF
  7. config BR2_PACKAGE_TIFF_CCITT
  8. bool "CCITT Group 3 & 4 support"
  9. default y
  10. config BR2_PACKAGE_TIFF_PACKBITS
  11. bool "Macintosh PackBits algorithm"
  12. default y
  13. config BR2_PACKAGE_TIFF_LZW
  14. bool "LZW algorithm"
  15. default y
  16. config BR2_PACKAGE_TIFF_THUNDER
  17. bool "ThunderScan 4-bit RLE algorithm"
  18. default y
  19. config BR2_PACKAGE_TIFF_NEXT
  20. bool "NeXT 2-bit RLE algorithm"
  21. default y
  22. config BR2_PACKAGE_TIFF_LOGLUV
  23. bool "LogLuv high dynamic range encoding"
  24. default y
  25. config BR2_PACKAGE_TIFF_MDI
  26. bool "Microsoft Document Imaging"
  27. default y
  28. config BR2_PACKAGE_TIFF_ZLIB
  29. bool "Zlib usage (required for Deflate compression)"
  30. default y
  31. select BR2_PACKAGE_ZLIB
  32. config BR2_PACKAGE_TIFF_XZ
  33. bool "XZ compression"
  34. select BR2_PACKAGE_XZ
  35. config BR2_PACKAGE_TIFF_PIXARLOG
  36. bool "Pixar log-format algorithm (requires Zlib)"
  37. default y
  38. select BR2_PACKAGE_TIFF_ZLIB
  39. config BR2_PACKAGE_TIFF_JPEG
  40. bool "JPEG compression"
  41. default y
  42. select BR2_PACKAGE_JPEG
  43. config BR2_PACKAGE_TIFF_OLD_JPEG
  44. bool "Old JPEG decompression"
  45. default y
  46. config BR2_PACKAGE_TIFF_JBIG
  47. bool "JBIG compression"
  48. default y
  49. config BR2_PACKAGE_TIFF_UTILITIES
  50. bool "tiff utilities"
  51. help
  52. Install all tiff utilities.
  53. endif