The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / tiff / Config.in
1 config BR2_PACKAGE_TIFF
2         bool "tiff"
3         help
4           Library for handling TIFF (Tag Image File Format) images.
5
6           http://www.libtiff.org/
7
8 if BR2_PACKAGE_TIFF
9 menu "tiff Options"
10
11 config BR2_PACKAGE_TIFF_CCITT
12         bool "CCITT Group 3 & 4 support"
13         default y
14
15 config BR2_PACKAGE_TIFF_PACKBITS
16         bool "Macintosh PackBits algorithm"
17         default y
18
19 config BR2_PACKAGE_TIFF_LZW
20         bool "LZW algorithm"
21         default y
22
23 config BR2_PACKAGE_TIFF_THUNDER
24         bool "ThunderScan 4-bit RLE algorithm"
25         default y
26
27 config BR2_PACKAGE_TIFF_NEXT
28         bool "NeXT 2-bit RLE algorithm"
29         default y
30
31 config BR2_PACKAGE_TIFF_LOGLUV
32         bool "LogLuv high dynamic range encoding"
33         default y
34
35 config BR2_PACKAGE_TIFF_MDI
36         bool "Microsoft Document Imaging"
37         default y
38
39 config BR2_PACKAGE_TIFF_ZLIB
40         bool "Zlib usage (required for Deflate compression)"
41         select BR2_PACKAGE_ZLIB
42         default y
43
44 config BR2_PACKAGE_TIFF_PIXARLOG
45         bool "Pixar log-format algorithm (requires Zlib)"
46         select BR2_PACKAGE_TIFF_ZLIB
47         default y
48
49 config BR2_PACKAGE_TIFF_JPEG
50         bool "JPEG compression"
51         select BR2_PACKAGE_JPEG
52         default y
53
54 config BR2_PACKAGE_TIFF_OLD_JPEG
55         bool "Old JPEG decompression"
56         default y
57
58 config BR2_PACKAGE_TIFF_JBIG
59         bool "JBIG compression"
60         default y
61 endmenu
62
63 config BR2_PACKAGE_TIFF_UTILITIES
64         bool "tiff utilities"
65         help
66           Install all tiff utilities.
67
68 endif