Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_CUPS_FILTERS
  2. bool "cups-filters"
  3. # needs fork()
  4. depends on BR2_USE_MMU
  5. depends on BR2_INSTALL_LIBSTDCPP # qpdf
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_USE_WCHAR # libglib2
  8. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  9. depends on BR2_PACKAGE_CUPS
  10. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # qpdf
  11. depends on BR2_TOOLCHAIN_HAS_ATOMIC # qpdf
  12. select BR2_PACKAGE_JPEG
  13. select BR2_PACKAGE_FONTCONFIG
  14. select BR2_PACKAGE_FREETYPE
  15. select BR2_PACKAGE_LCMS2
  16. select BR2_PACKAGE_LIBGLIB2
  17. select BR2_PACKAGE_QPDF
  18. help
  19. This project provides backends, filters, and other software
  20. that was once part of the core CUPS distribution but is no
  21. longer maintained by Apple Inc. In addition it contains
  22. additional filters and software developed independently of
  23. Apple, especially filters for the PDF-centric printing
  24. workflow introduced by OpenPrinting and a daemon to browse
  25. Bonjour broadcasts of remote CUPS printers to make these
  26. printers available locally and to provide backward
  27. compatibility to the old CUPS broadcasting and browsing of
  28. CUPS 1.5.x and older. From CUPS 1.6.0 on, this package is
  29. required for using printer drivers with CUPS under Linux.
  30. With CUPS 1.5.x and earlier this package can be used
  31. optionally to switch over to PDF-based printing.
  32. http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters
  33. comment "cups-filters needs a toolchain w/ wchar, C++, threads and dynamic library, gcc >= 5"
  34. depends on BR2_USE_MMU
  35. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  36. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  37. !BR2_USE_WCHAR || BR2_STATIC_LIBS || \
  38. !BR2_TOOLCHAIN_GCC_AT_LEAST_5