python-treq: bump to version 16.12.0
[buildroot-gz.git] / package / cairo / Config.in
blob0c87a2904b286aa6532a734489629298aa469537
1 config BR2_PACKAGE_CAIRO
2         bool "cairo"
3         select BR2_PACKAGE_PIXMAN
4         select BR2_PACKAGE_FONTCONFIG
5         select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
6         select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7
7         help
8           Cairo is a 2D graphics library with support for multiple
9           output devices. Currently supported output targets include
10           the X Window System, Win32, image buffers, and PostScript,
11           PDF, and SVG file output. Experimental backends include
12           OpenGL (through glitz), Quartz, and XCB.
14           http://cairographics.org/
16 if BR2_PACKAGE_CAIRO
18 config BR2_PACKAGE_CAIRO_PS
19         bool "postscript support"
20         select BR2_PACKAGE_ZLIB
21         select BR2_PACKAGE_CAIRO_PDF
23 config BR2_PACKAGE_CAIRO_PDF
24         bool "pdf support"
25         select BR2_PACKAGE_ZLIB
27 config BR2_PACKAGE_CAIRO_PNG
28         bool "png support"
29         select BR2_PACKAGE_LIBPNG
30         select BR2_PACKAGE_ZLIB
32 config BR2_PACKAGE_CAIRO_SCRIPT
33         bool "script support"
34         select BR2_PACKAGE_CAIRO_PNG
36 config BR2_PACKAGE_CAIRO_SVG
37         bool "svg support"
38         select BR2_PACKAGE_CAIRO_PNG
39         select BR2_PACKAGE_CAIRO_PDF
41 config BR2_PACKAGE_CAIRO_TEE
42         bool "tee support"
44 config BR2_PACKAGE_CAIRO_XML
45         bool "xml support"
46         select BR2_PACKAGE_CAIRO_PNG
48 endif