use "Rubik" from more_fonts instead of "System" for consistent layout
[LibreOffice.git] / external / libmspub / ExternalProject_libmspub.mk
blob7e7153e75416bebd65a2272ac6f335d28bac78ef
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,libmspub))
12 $(eval $(call gb_ExternalProject_use_autoconf,libmspub,build))
14 $(eval $(call gb_ExternalProject_register_targets,libmspub,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libmspub,\
19 boost_headers \
20 icu \
21 revenge \
22 zlib \
25 libmspub_CPPFLAGS := $(CPPFLAGS) $(ICU_UCHAR_TYPE) $(BOOST_CPPFLAGS)
26 # Needed when workdir/UnpackedTarball/libmspub/src/lib/MSPUBCollector.cpp includes Boost 1.79.0
27 # boost/multi_array.hpp, which indirectly includes
28 # workdir/UnpackedTarball/boost/boost/functional.hpp using std::unary_/binary_function:
29 ifeq ($(HAVE_LIBCPP),TRUE)
30 libmspub_CPPFLAGS += -D_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION
31 endif
33 $(call gb_ExternalProject_get_state_target,libmspub,build) :
34 $(call gb_Trace_StartRange,libmspub,EXTERNAL)
35 $(call gb_ExternalProject_run,build,\
36 export PKG_CONFIG="" \
37 && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
38 --with-pic \
39 --enable-static \
40 --disable-shared \
41 --without-docs \
42 --disable-tools \
43 $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \
44 --disable-werror \
45 --disable-weffc \
46 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
47 CXXFLAGS="$(gb_CXXFLAGS) $(call gb_ExternalProject_get_build_flags,libmspub)" \
48 CPPFLAGS="$(libmspub_CPPFLAGS)" \
49 LDFLAGS="$(call gb_ExternalProject_get_link_flags,libmspub)" \
50 $(gb_CONFIGURE_PLATFORMS) \
51 && $(MAKE) \
53 $(call gb_Trace_EndRange,libmspub,EXTERNAL)
55 # vim: set noet sw=4 ts=4: