xref: /OK3568_Linux_fs/buildroot/package/cairo/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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.
13
14	  http://cairographics.org/
15
16if BR2_PACKAGE_CAIRO
17
18config BR2_PACKAGE_CAIRO_PS
19	bool "postscript support"
20	select BR2_PACKAGE_ZLIB
21	select BR2_PACKAGE_CAIRO_PDF
22
23config BR2_PACKAGE_CAIRO_PDF
24	bool "pdf support"
25	select BR2_PACKAGE_ZLIB
26
27config BR2_PACKAGE_CAIRO_PNG
28	bool "png support"
29	select BR2_PACKAGE_LIBPNG
30	select BR2_PACKAGE_ZLIB
31
32config BR2_PACKAGE_CAIRO_SCRIPT
33	bool "script support"
34	select BR2_PACKAGE_CAIRO_PNG
35
36config BR2_PACKAGE_CAIRO_SVG
37	bool "svg support"
38	select BR2_PACKAGE_CAIRO_PNG
39	select BR2_PACKAGE_CAIRO_PDF
40
41config BR2_PACKAGE_CAIRO_TEE
42	bool "tee support"
43
44config BR2_PACKAGE_CAIRO_XML
45	bool "xml support"
46	select BR2_PACKAGE_CAIRO_PNG
47
48endif
49