Files
loongoffice/external/libeot/ExternalProject_libeot.mk
Thorsten Behrens 6fa6599963 Remove hard limit to c89 for clang
This seems no longer true: "Windows MSVC only supports C90 so force gnu89"

With that said, also do a revert:
 "external/libeot internally uses --std=c99, do not overrule that"

 This reverts commit 61a66b612eaeeb38d5d9f9aa83326be6b08c1b6f.

Change-Id: Id628131b4fa6b61e19da6d862d773ab36f201729
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160454
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
2023-12-10 00:37:58 +01:00

31 lines
873 B
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_ExternalProject_ExternalProject,libeot))
$(eval $(call gb_ExternalProject_register_targets,libeot,\
build \
))
$(call gb_ExternalProject_get_state_target,libeot,build) :
$(call gb_Trace_StartRange,libeot,EXTERNAL)
$(call gb_ExternalProject_run,build,\
touch Makefile.in \
&& export PKG_CONFIG="" \
&& $(gb_RUN_CONFIGURE) ./configure \
--with-pic \
--enable-static \
--disable-shared \
--disable-debug \
&& $(MAKE) $(if $(verbose),V=1) \
)
$(call gb_Trace_EndRange,libeot,EXTERNAL)
# vim: set noet sw=4 ts=4: