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