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
,hsqldb
))
12 $(eval
$(call gb_ExternalProject_register_targets
,hsqldb
,\
16 # ANT_OPTS -Djava.security.manager=allow allows latest Apache Ant 1.10.12 to still run under
17 # Java 18, where java.lang.System.setSecurityManager (as called from
18 # org.apache.tools.ant.types.Permissions.setSecurityManager) would otherwise throw an
19 # UnsupportedOperationException (see <https://openjdk.java.net/jeps/411> "Deprecate the Security
20 # Manager for Removal"):
21 $(call gb_ExternalProject_get_state_target
,hsqldb
,build
) :
22 $(call gb_Trace_StartRange
,hsqldb
,EXTERNAL
)
23 $(call gb_ExternalProject_run
,build
,\
24 unset MSYS_NO_PATHCONV
&& JAVA_HOME
=$(JAVA_HOME_FOR_BUILD
) \
25 $(if
$(JDK_SECURITYMANAGER_DISALLOWED_FOR_BUILD
), \
26 ANT_OPTS
="$$ANT_OPTS -Djava.security.manager=allow") \
27 $(ICECREAM_RUN
) "$(ANT)" \
28 $(if
$(verbose
),-v
,-q
) \
30 -Dbuild.label
="build-$(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR).$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)" \
31 -Dant.build.javac.source
=$(JAVA_SOURCE_VER
) \
32 -Dant.build.javac.target
=$(JAVA_TARGET_VER
) \
33 $(if
$(debug
),-Dbuild.debug
="on") \
36 $(call gb_Trace_EndRange
,hsqldb
,EXTERNAL
)
38 # vim: set noet sw=4 ts=4: