Config.in 847 B

1234567891011121314151617181920212223242526272829303132333435
  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. select BR2_PACKAGE_CAIRO_PDF
  17. config BR2_PACKAGE_CAIRO_PDF
  18. bool "pdf support"
  19. select BR2_PACKAGE_ZLIB
  20. config BR2_PACKAGE_CAIRO_PNG
  21. bool "png support"
  22. select BR2_PACKAGE_LIBPNG
  23. select BR2_PACKAGE_ZLIB
  24. config BR2_PACKAGE_CAIRO_SVG
  25. bool "svg support"
  26. select BR2_PACKAGE_CAIRO_PNG
  27. select BR2_PACKAGE_CAIRO_PDF
  28. endif