80795456d0
Upgrade to latest stable release. Release 0.24.4 core: * Fix regression in broken endstream detection. Bug #70854 * Catalog: sort entries of NameTrees to make sure lookup works. Bug #26049 * Don't infinite loop if reading from GooFile::read fails. Bug #71835 utils: * pdftotext: Do not close stdout. Bug #71639 * pdftotext: Silence warning for may be used uninitialized variable. Bug #71640 * pdftotext: Escape the text of the xml headers * Warn the user if he provides a wrong range qt4: * Fix typo in xml API. Bug #71643 qt5: * Fix typo in xml API. Bug #71643 Release 0.24.3 core: * PSOutputDev: Fix PFB font embedding. Bug #69717 * CairoOutputDev: Do not set an invalid matrix in drawImage(). Bug #70085 qt4: * Don't crash if getXRef()->copy() fails qt5: * Don't crash if getXRef()->copy() fails utils: * pdfseparate: Allow only one %d in the filename. Bug #69434 Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
65 lines
1.5 KiB
Makefile
65 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# poppler
|
|
#
|
|
################################################################################
|
|
|
|
POPPLER_VERSION = 0.24.4
|
|
POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
|
|
POPPLER_SITE = http://poppler.freedesktop.org
|
|
POPPLER_DEPENDENCIES = fontconfig
|
|
POPPLER_LICENSE = GPLv2+
|
|
POPPLER_LICENSE_FILES = COPYING
|
|
POPPLER_CONF_OPT = --with-font-configuration=fontconfig
|
|
|
|
ifeq ($(BR2_PACKAGE_LCMS2),y)
|
|
POPPLER_CONF_OPT += --enable-cms=lcms2
|
|
POPPLER_DEPENDENCIES += lcms2
|
|
else
|
|
POPPLER_CONF_OPT += --enable-cms=none
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
POPPLER_CONF_OPT += --enable-libtiff
|
|
POPPLER_DEPENDENCIES += tiff
|
|
else
|
|
POPPLER_CONF_OPT += --disable-libtiff
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
POPPLER_CONF_OPT += --enable-libjpeg
|
|
POPPLER_DEPENDENCIES += jpeg
|
|
else
|
|
POPPLER_CONF_OPT += --disable-libjpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
POPPLER_CONF_OPT += --enable-libpng
|
|
POPPLER_DEPENDENCIES += libpng
|
|
else
|
|
POPPLER_CONF_OPT += --disable-libpng
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
POPPLER_CONF_OPT += --enable-zlib
|
|
POPPLER_DEPENDENCIES += zlib
|
|
else
|
|
POPPLER_CONF_OPT += --disable-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POPPLER_LIBCURL),y)
|
|
POPPLER_CONF_OPT += --enable-libcurl
|
|
POPPLER_DEPENDENCIES += libcurl
|
|
else
|
|
POPPLER_CONF_OPT += --disable-libcurl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
POPPLER_CONF_OPT += --with-x
|
|
POPPLER_DEPENDENCIES += xlib_libX11 xlib_libXext
|
|
else
|
|
POPPLER_CONF_OPT += --without-x
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|