summaryrefslogtreecommitdiffstats
path: root/external/poppler/UnpackedTarball_poppler.mk
blob: cc3e30651871f549cd6b13a8af67a35eef1a4320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

$(eval $(call gb_UnpackedTarball_UnpackedTarball,poppler))

$(eval $(call gb_UnpackedTarball_set_tarball,poppler,$(POPPLER_TARBALL),,poppler))

$(eval $(call gb_UnpackedTarball_add_patches,poppler,\
	external/poppler/poppler-config.patch.1 \
	external/poppler/poppler-c++11.patch.1 \
	external/poppler/0001-Partially-revert-814fbda28cc8a37fed3134c2db8da28f86f.patch.1 \
	external/poppler/0001-Revert-Make-the-mul-tables-be-calculated-at-compile-.patch.1 \
	external/poppler/disable-freetype.patch.1 \
	external/poppler/gcc7-EntityInfo.patch.1 \
))

# patch is required for MSVC but changes the API used by sdext so apply always
$(eval $(call gb_UnpackedTarball_add_patches,poppler,\
	external/poppler/poppler-vs2015-buildfix.patch.1 \
))

# std::make_unique is only available in C++14
# use "env -i" to avoid Cygwin "environment is too large for exec"
# Mac OS X sed says "sed: RE error: illegal byte sequence"; Apple clang should
# be happy with std::make_unique so just skip it
ifneq ($(OS_FOR_BUILD),MACOSX)
$(eval $(call gb_UnpackedTarball_set_post_action,poppler,\
	env -i PATH="$(if $(filter WNT,$(OS)),/usr/bin,$(PATH))" $(FIND) . -name '*.cc' -exec sed -i -e 's/std::make_unique/o3tl::make_unique/' {} \\; \
))
endif

# vim: set noet sw=4 ts=4: