fix Skia copyArea() not coping with coordinates outside (tdf#145811)
[LibreOffice.git] / external / fontconfig / ExternalProject_fontconfig.mk
blob1d65173ce0f508af25389354e21937256d25f45e
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_Trace_StartRange,fontconfig,EXTERNAL)
23 $(call gb_ExternalProject_run,build,\
24 CFLAGS="$(CFLAGS) $(if $(debug),-g) $(gb_VISIBILITY_FLAGS) $(if $(filter EMSCRIPTEN,$(OS)),-pthread)" $(if $(filter ANDROID,$(OS)),LIBS="-lm") \
25 $(gb_RUN_CONFIGURE) ./configure \
26 --disable-shared \
27 --disable-silent-rules \
28 $(if $(filter ANDROID,$(OS)),--with-arch=arm) \
29 --with-expat-includes=$(call gb_UnpackedTarball_get_dir,expat)/lib \
30 --with-expat-lib=$(gb_StaticLibrary_WORKDIR) \
31 --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
32 $(if $(filter EMSCRIPTEN,$(OS)),ac_cv_func_fstatfs=no ac_cv_func_fstatvfs=no) \
33 && $(MAKE) -C src \
35 $(call gb_Trace_EndRange,fontconfig,EXTERNAL)
37 # vim: set noet sw=4 ts=4: