1config 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 13 http://poppler.freedesktop.org/ 14 15if BR2_PACKAGE_POPPLER 16 17config BR2_PACKAGE_POPPLER_QT5 18 bool "Qt5 support" 19 depends on BR2_PACKAGE_QT5 20 select BR2_PACKAGE_QT5BASE_GUI 21 select BR2_PACKAGE_QT5BASE_WIDGETS 22 select BR2_PACKAGE_QT5BASE_XML 23 help 24 Build Qt support into the Poppler library 25 26config BR2_PACKAGE_POPPLER_UTILS 27 bool "command line utils" 28 help 29 Compile poppler command line utils. 30 31endif 32 33comment "poppler needs a toolchain w/ wchar, C++, threads, dynamic library, gcc >= 5" 34 depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \ 35 !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ 36 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 37