Commit 03671be9 authored by Olivier Schonken's avatar Olivier Schonken Committed by Thomas Petazzoni
Browse files

package/poppler: bump version to 0.32.0



This commit also adds an optional dependency on openjpeg: if
--enable-openjpeg=none is not passed, poppler assumes openjpeg is
available.

[Thomas:
  - add optional dependency on openjpeg instead of mandatory
    dependency.
  - remove --enable-xpdf-headers, since there was no justification for
    it.]

Signed-off-by: default avatarOlivier Schonken <olivier.schonken@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent a7790974
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# Locally calculated
sha256	a2654910100c923c44e366242495e226db2798254f2fa2781138867348759f84	poppler-0.24.5.tar.xz
sha256	4963e31ba5e17530a87b16588e22928bc044e8d28d02303dded981bff6725b98	poppler-0.32.0.tar.xz
+8 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
################################################################################

POPPLER_VERSION = 0.24.5
POPPLER_VERSION = 0.32.0
POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
POPPLER_SITE = http://poppler.freedesktop.org
POPPLER_DEPENDENCIES = fontconfig
@@ -69,4 +69,11 @@ else
POPPLER_CONF_OPTS += --disable-poppler-qt4
endif

ifeq ($(BR2_PACKAGE_OPENJPEG),y)
POPPLER_DEPENDENCIES += openjpeg
POPPLER_CONF_OPTS += -enable-libopenjpeg=openjpeg2
else
POPPLER_CONF_OPTS += -enable-libopenjpeg=none
endif

$(eval $(autotools-package))