90fc5593a4
Causes way too much problems with the tinderboxes, thanks to -Werror getting passed to the liborcus configury, and liborcus apparently is quite -Werror-unclean. Thus also revert the initial fixes for those WaEs. (Many more would be needed, it seems. I rather leave it to Kohei to make upstream liborcus warning-free. This reverts commit083fa89dd8
. This reverts commit7e871bbaf7
. This reverts commit21b5706f83
. This reverts commitbed5557e8b
.
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
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,orcus))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,orcus,$(ORCUS_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,orcus,0))
|
|
|
|
orcus_patches :=
|
|
# -Werror,-Wunused-variable -Werror,-Wunused-private-field
|
|
orcus_patches += liborcus_0.1.0-warnings.patch
|
|
# make config.sub recognize arm-linux-androideabi
|
|
orcus_patches += liborcus_0.1.0-configure.patch
|
|
# fix MinGW build
|
|
orcus_patches += liborcus_0.1.0-mingw.patch
|
|
# disable boost "auto lib" in MSVC build
|
|
orcus_patches += liborcus_0.1.0-boost_disable_auto_lib.patch
|
|
|
|
$(eval $(call gb_UnpackedTarball_fix_end_of_line,orcus,\
|
|
vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcproj \
|
|
))
|
|
|
|
$(eval $(call gb_UnpackedTarball_add_patches,orcus,\
|
|
$(foreach patch,$(orcus_patches),liborcus/$(patch)) \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|