fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / external / fontconfig / ExternalProject_fontconfig.mk
blobe4de004bdc34f82f5905c1ab56a3888747a9300b
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_ExternalProject_ExternalProject,fontconfig))
12 $(eval $(call gb_ExternalProject_use_externals,fontconfig,\
13 expat \
14 freetype \
17 $(eval $(call gb_ExternalProject_register_targets,fontconfig,\
18 build \
21 $(call gb_ExternalProject_get_state_target,fontconfig,build) :
22 $(call gb_ExternalProject_run,build,\
23 CFLAGS="$(if $(debug),-g) $(gb_VISIBILITY_FLAGS)" $(if $(filter ANDROID,$(OS)),LIBS="-lm") \
24 ./configure \
25 --disable-shared \
26 --with-arch=arm \
27 --with-expat-includes=$(call gb_UnpackedTarball_get_dir,expat)/lib \
28 --with-expat-lib=$(gb_StaticLibrary_WORKDIR) \
29 --with-freetype-config=$(call gb_UnpackedTarball_get_dir,freetype)/instdir/bin/freetype-config \
30 --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
31 && $(MAKE) \
34 # vim: set noet sw=4 ts=4: