f5fa61e7f0
I think this is all external libs where it makes sense for them to have their own PCH and be worth it. Maybe some smaller externals can also use the common system PCH, but unfortunately many externals use all kinds of defines that affect system headers, which is a problem for the common system PCH. Change-Id: I2c589ac55d93728daf3b158df110722e5f055d45 Reviewed-on: https://gerrit.libreoffice.org/80728 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
31 lines
949 B
Makefile
31 lines
949 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,liborcus))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,liborcus,$(ORCUS_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,liborcus,1))
|
|
|
|
$(eval $(call gb_UnpackedTarball_update_autoconf_configs,liborcus))
|
|
|
|
$(eval $(call gb_UnpackedTarball_add_patches,liborcus,\
|
|
external/liborcus/rpath.patch.0 \
|
|
external/liborcus/gcc9.patch.0 \
|
|
external/liborcus/libtool.patch.0 \
|
|
external/liborcus/fix-pch.patch.0 \
|
|
))
|
|
|
|
ifeq ($(OS),WNT)
|
|
$(eval $(call gb_UnpackedTarball_add_patches,liborcus,\
|
|
external/liborcus/windows-constants-hack.patch \
|
|
))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|