office-gobmx/shell/Library_syssh.mk
Stephan Bergmann da3aa26efd Library_syssh must link against expat when using StaticLibrary_shell_xmlparser
...which in turn uses expat, so this caused a Linux build of mine to fail with

> [LNK] Library/libsysshlo.so
> ld.lld: error: undefined symbol: XML_ParserCreate
> >>> referenced by xml_parser.cxx:74 (shell/source/all/xml_parser.cxx:74)
> >>>               xml_parser.o:(xml_parser::xml_parser()) in archive workdir/LinkTarget/StaticLibrary/libshell_xmlparser.a

etc.  (No idea why that only started to hit me now, seemingly out of the blue,
but it looks plausible that we need that fix.)

Change-Id: I1d0efabf8cc809bd82ce30ec67d16ce1eb547de0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134167
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-05-11 16:16:35 +02:00

58 lines
1.3 KiB
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_Library_Library,syssh))
$(eval $(call gb_Library_use_sdk_api,syssh))
$(eval $(call gb_Library_use_libraries,syssh,\
cppu \
cppuhelper \
comphelper \
sal \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Library_use_system_win32_libs,syssh,\
ole32 \
shell32 \
))
$(eval $(call gb_Library_set_componentfile,syssh,shell/source/win32/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/win32/SysShExec \
))
else # OS != WNT
$(eval $(call gb_Library_use_static_libraries,syssh,\
shell_xmlparser \
))
$(eval $(call gb_Library_use_externals,syssh, \
expat \
))
$(eval $(call gb_Library_set_componentfile,syssh,shell/source/unix/exec/syssh,services))
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/unix/exec/shellexec \
))
ifeq ($(OS),EMSCRIPTEN)
$(eval $(call gb_Library_add_exception_objects,syssh,\
shell/source/unix/exec/shellexec_em \
))
endif
endif # OS
# vim: set shiftwidth=4 tabstop=4 noexpandtab: