Avoid potential negative array index access to cached text.
[LibreOffice.git] / external / libqxp / ExternalProject_libqxp.mk
blobfea48ffc4b117d10f98cfc8b883a8f0b722174e9
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,libqxp))
12 $(eval $(call gb_ExternalProject_use_autoconf,libqxp,build))
14 $(eval $(call gb_ExternalProject_register_targets,libqxp,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libqxp,\
19 boost_headers \
20 icu \
21 revenge \
24 $(call gb_ExternalProject_get_state_target,libqxp,build) :
25 $(call gb_Trace_StartRange,libqxp,EXTERNAL)
26 $(call gb_ExternalProject_run,build,\
27 export PKG_CONFIG="" \
28 && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
29 --with-pic \
30 --enable-static \
31 --disable-shared \
32 --without-docs \
33 --disable-tests \
34 --disable-tools \
35 --disable-debug \
36 --disable-werror \
37 --disable-weffc \
38 $(if $(gb_FULLDEPS),,--disable-dependency-tracking) \
39 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
40 CXXFLAGS="$(gb_CXXFLAGS) $(call gb_ExternalProject_get_build_flags,libqxp)" \
41 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
42 LDFLAGS="$(call gb_ExternalProject_get_link_flags,libqxp)" \
43 $(gb_CONFIGURE_PLATFORMS) \
44 && $(MAKE) \
46 $(call gb_Trace_EndRange,libqxp,EXTERNAL)
48 # vim: set noet sw=4 ts=4: