2
1

Config.in 787 B

123456789101112131415161718192021222324252627282930313233
  1. config BR2_PACKAGE_CAIRO
  2. bool "cairo"
  3. select BR2_PACKAGE_PIXMAN
  4. select BR2_PACKAGE_FONTCONFIG
  5. help
  6. Cairo is a 2D graphics library with support for multiple
  7. output devices. Currently supported output targets include
  8. the X Window System, Win32, image buffers, and PostScript,
  9. PDF, and SVG file output. Experimental backends include
  10. OpenGL (through glitz), Quartz, and XCB.
  11. http://cairographics.org/
  12. if BR2_PACKAGE_CAIRO
  13. config BR2_PACKAGE_CAIRO_PS
  14. bool "postscript support"
  15. select BR2_PACKAGE_ZLIB
  16. config BR2_PACKAGE_CAIRO_PDF
  17. bool "pdf support"
  18. select BR2_PACKAGE_ZLIB
  19. config BR2_PACKAGE_CAIRO_PNG
  20. bool "png support"
  21. select BR2_PACKAGE_LIBPNG
  22. select BR2_PACKAGE_ZLIB
  23. config BR2_PACKAGE_CAIRO_SVG
  24. bool "svg support"
  25. select BR2_PACKAGE_CAIRO_PNG
  26. endif