Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.
  13. http://cairographics.org/
  14. if BR2_PACKAGE_CAIRO
  15. config BR2_PACKAGE_CAIRO_PS
  16. bool "postscript support"
  17. select BR2_PACKAGE_ZLIB
  18. select BR2_PACKAGE_CAIRO_PDF
  19. config BR2_PACKAGE_CAIRO_PDF
  20. bool "pdf support"
  21. select BR2_PACKAGE_ZLIB
  22. config BR2_PACKAGE_CAIRO_PNG
  23. bool "png support"
  24. select BR2_PACKAGE_LIBPNG
  25. select BR2_PACKAGE_ZLIB
  26. config BR2_PACKAGE_CAIRO_SCRIPT
  27. bool "script support"
  28. select BR2_PACKAGE_CAIRO_PNG
  29. config BR2_PACKAGE_CAIRO_SVG
  30. bool "svg support"
  31. select BR2_PACKAGE_CAIRO_PNG
  32. select BR2_PACKAGE_CAIRO_PDF
  33. config BR2_PACKAGE_CAIRO_TEE
  34. bool "tee support"
  35. config BR2_PACKAGE_CAIRO_XML
  36. bool "xml support"
  37. select BR2_PACKAGE_CAIRO_PNG
  38. endif