c72d5d787f
This commit includes the changes in5e3510dbb6
and219bef04b7
, as well as the following changes: * add bzip2 as permissable build target when cross compiling for Windows ARM64. * add external/bzip2/disable-test.patch.0 for cross-compiling. * revert the changes to configure.ac in5e3510dbb6
. * change the argument of gb_UnpackedTarball_fix_end_of_line. Change-Id: Iad8b1ed48d6c56e1302d9ac11620dc8084e79276 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157101 Tested-by: Taichi Haradaguchi <20001722@ymail.ne.jp> Reviewed-by: Taichi Haradaguchi <20001722@ymail.ne.jp>
24 lines
683 B
Makefile
24 lines
683 B
Makefile
# -*- 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,bzip2))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,bzip2,$(BZIP2_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_fix_end_of_line,bzip2,\
|
|
makefile.msc \
|
|
))
|
|
|
|
ifneq ($(CROSS_COMPILING),)
|
|
$(eval $(call gb_UnpackedTarball_add_patches,bzip2,\
|
|
external/bzip2/disable-test.patch.0 \
|
|
))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|