Config.in 975 B

123456789101112131415161718192021222324252627282930313233343536
  1. config BR2_PACKAGE_POPPLER
  2. bool "poppler"
  3. depends on BR2_USE_WCHAR
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14, constexpr
  8. select BR2_PACKAGE_FONTCONFIG
  9. help
  10. Poppler is a PDF rendering library based on the xpdf-3.0
  11. code base.
  12. http://poppler.freedesktop.org/
  13. if BR2_PACKAGE_POPPLER
  14. config BR2_PACKAGE_POPPLER_QT5
  15. bool "Qt5 support"
  16. depends on BR2_PACKAGE_QT5
  17. select BR2_PACKAGE_QT5BASE_GUI
  18. select BR2_PACKAGE_QT5BASE_WIDGETS
  19. select BR2_PACKAGE_QT5BASE_XML
  20. help
  21. Build Qt support into the Poppler library
  22. config BR2_PACKAGE_POPPLER_UTILS
  23. bool "command line utils"
  24. help
  25. Compile poppler command line utils.
  26. endif
  27. comment "poppler needs a toolchain w/ wchar, C++, threads, dynamic library, gcc >= 5"
  28. depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
  29. !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
  30. !BR2_TOOLCHAIN_GCC_AT_LEAST_5