# -*- 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,xsec_xmlsec)) $(eval $(call gb_Library_set_componentfile,xsec_xmlsec,xmlsecurity/util/xsec_xmlsec,services)) $(eval $(call gb_Library_add_componentimpls,xsec_xmlsec, \ $(if $(ENABLE_GPGMEPP),gpg) \ $(if $(or $(ENABLE_NSS),$(filter WNT,$(OS))),nss_mscrypt) \ $(if $(ENABLE_NSS),nss) \ )) $(eval $(call gb_Library_set_include,xsec_xmlsec,\ $$(INCLUDE) \ -I$(SRCDIR)/xmlsecurity/inc \ -I$(SRCDIR)/xmlsecurity/source/gpg \ -I$(SRCDIR)/xmlsecurity/source/xmlsec \ -I$(gb_UnpackedTarball_workdir)/xmlsec/include \ )) $(eval $(call gb_Library_use_custom_headers,xsec_xmlsec,\ officecfg/registry \ )) $(eval $(call gb_Library_use_sdk_api,xsec_xmlsec)) $(eval $(call gb_Library_add_defs,xsec_xmlsec,\ -DXMLSEC_NO_XSLT \ -DXSECXMLSEC_DLLIMPLEMENTATION \ )) $(eval $(call gb_Library_set_precompiled_header,xsec_xmlsec,xmlsecurity/inc/pch/precompiled_xsec_xmlsec)) $(eval $(call gb_Library_use_libraries,xsec_xmlsec,\ comphelper \ cppu \ cppuhelper \ sal \ svl \ tl \ xo \ utl \ )) ifeq ($(SYSTEM_XMLSEC),) $(eval $(call gb_Library_use_packages,xsec_xmlsec,\ xmlsec \ )) endif $(eval $(call gb_Library_use_externals,xsec_xmlsec,\ boost_headers \ $(if $(ENABLE_GPGMEPP),gpgmepp) \ libxml2 \ xmlsec \ )) $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/xmlsec/biginteger \ xmlsecurity/source/xmlsec/certificateextension_certextn \ xmlsecurity/source/xmlsec/errorcallback \ xmlsecurity/source/xmlsec/saxhelper \ xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl \ xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl \ xmlsecurity/source/xmlsec/xmlsec_init \ xmlsecurity/source/xmlsec/xmlstreamio \ )) ifeq ($(ENABLE_GPGMEPP),TRUE) $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/gpg/CertificateImpl \ xmlsecurity/source/gpg/CipherContext \ xmlsecurity/source/gpg/DigestContext \ xmlsecurity/source/gpg/SecurityEnvironment \ xmlsecurity/source/gpg/SEInitializer \ xmlsecurity/source/gpg/XMLEncryption \ xmlsecurity/source/gpg/XMLSecurityContext \ xmlsecurity/source/gpg/xmlsignature_gpgimpl \ )) endif ifeq ($(OS),WNT) $(eval $(call gb_Library_add_defs,xsec_xmlsec,\ -DXMLSEC_CRYPTO_MSCRYPTO \ )) $(eval $(call gb_Library_add_libs,xsec_xmlsec,\ $(gb_UnpackedTarball_workdir)/xmlsec/win32/binaries/libxmlsec-mscng.lib \ $(gb_UnpackedTarball_workdir)/xmlsec/win32/binaries/libxmlsec.lib \ )) $(eval $(call gb_Library_use_system_win32_libs,xsec_xmlsec,\ crypt32 \ advapi32 \ ncrypt \ )) $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/xmlsec/mscrypt/akmngr \ xmlsecurity/source/xmlsec/mscrypt/sanextension_mscryptimpl \ xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl \ xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl \ xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl \ xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl \ xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl \ )) ifeq ($(ENABLE_NSS),TRUE) $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/xmlsec/nss/ciphercontext \ xmlsecurity/source/xmlsec/nss/digestcontext \ xmlsecurity/source/xmlsec/nss/nssinitializer \ )) # nss3 after static libs to appease --as-needed linkers $(eval $(call gb_Library_use_externals,xsec_xmlsec,\ nss3 \ )) endif else # !$(OS),WNT ifeq ($(SYSTEM_XMLSEC),) $(eval $(call gb_Library_add_libs,xsec_xmlsec,\ $(gb_UnpackedTarball_workdir)/xmlsec/src/.libs/libxmlsec1.a \ )) endif ifeq ($(ENABLE_NSS),TRUE) ifeq ($(SYSTEM_XMLSEC),) $(eval $(call gb_Library_add_libs,xsec_xmlsec,\ $(gb_UnpackedTarball_workdir)/xmlsec/src/nss/.libs/libxmlsec1-nss.a \ )) endif $(eval $(call gb_Library_add_exception_objects,xsec_xmlsec,\ xmlsecurity/source/xmlsec/nss/ciphercontext \ xmlsecurity/source/xmlsec/nss/digestcontext \ xmlsecurity/source/xmlsec/nss/nssinitializer \ xmlsecurity/source/xmlsec/nss/sanextension_nssimpl \ xmlsecurity/source/xmlsec/nss/secerror \ xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl \ xmlsecurity/source/xmlsec/nss/seinitializer_nssimpl \ xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl \ xmlsecurity/source/xmlsec/nss/xmlsecuritycontext_nssimpl \ xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl \ )) $(eval $(call gb_Library_add_defs,xsec_xmlsec,\ -DXMLSEC_CRYPTO_NSS \ )) $(eval $(call gb_Library_use_externals,xsec_xmlsec,\ plc4 \ )) # nss3 after static libs to appease --as-needed linkers $(eval $(call gb_Library_use_externals,xsec_xmlsec,\ nss3 \ nssutil3 \ )) else # ! $(ENABLE_NSS) ifeq ($(ENABLE_OPENSSL),TRUE) $(eval $(call gb_Library_use_external,xsec_xmlsec,openssl)) endif endif # !$(ENABLE_NSS) ifeq ($(OS),SOLARIS) $(eval $(call gb_Library_add_libs,xsec_xmlsec,\ -ldl \ )) endif endif # !$(OS),WNT # vim: set noet sw=4 ts=4: 'distro/collabora/lov-5.2'>distro/collabora/lov-5.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/salhelper
AgeCommit message (Expand)Author
2021-12-22revert part of "loplugin:flatten in filter..include"Noel Grandin
2021-12-22loplugin:flatten in filter..includeNoel Grandin
2021-02-02tdf#130978 Added comment to all published APImsrijita18
2020-11-21tdf#123936 Formatting files in module include with clang-formatPhilipp Hofer
2020-02-04tdf#96505 Get rid of cargo cult "long" integer literals .Shivam Kumar Singh
2019-07-14Fix typoAndrea Gelmini
2019-01-09tdf#42949 Fix IWYU warnings in salhelper/Gabor Kelemen
2018-11-15Fix typosAndrea Gelmini
2018-09-07Drop workaround for old MSVC that no longer appears necessary with MSVC 2017Stephan Bergmann
2018-08-10tdf#42949 Fix IWYU warnings in include/salhelper/*Gabor Kelemen
2018-07-27salhelper: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9)Stephan Bergmann
2018-07-24Fix typosAndrea Gelmini
2018-06-27salhelper::SingletonRef copy ctor is broken, mark as deletedStephan Bergmann
2018-04-12hold MetaAction by rtl::ReferenceNoel Grandin
2018-01-29Fix typosAndrea Gelmini
2017-12-19Fix typosAndrea Gelmini
2017-10-23loplugin:includeform: UNO API include filesStephan Bergmann
2017-06-18Fix typosAndrea Gelmini
2017-06-16salhelper: typo in dynload.hxxChris Sherlock
2017-06-12tdf#43157 - salhelper: convert from OSL_ASSERT to assertChris Sherlock
2017-06-06add COVERITY_NOEXCEPT_FALSECaolán McNamara
2017-05-07revert OSL_ASSERT changesChris Sherlock
2017-05-07tdf#43157: convert salhelper from OSL_ASSERT to assertChris Sherlock
2017-03-18salhelper: change oslCondition to osl::ConditionChris Sherlock
2017-03-03Remove redundant 'inline' keywordStephan Bergmann
2017-03-03Fix typosAndrea Gelmini
2017-01-31a whole bunch of SAL_WARN_UNUSEDNoel Grandin
2017-01-26Remove dynamic exception specificationsStephan Bergmann
2017-01-19New loplugin:dynexcspec: Add @throws documentation, salhelperStephan Bergmann
2016-10-03Fix typosAndrea Gelmini
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
2016-06-08use NULL instead of nullptr in external facing codeNoel Grandin
2016-06-08fix release in ODynamicLoaderNoel Grandin
2016-02-09Remove excess newlinesChris Sherlock
2015-12-10More loplugin:nullptr automatic rewrite (within templates)Stephan Bergmann
2015-11-10Missing includes (for NULL)Stephan Bergmann
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-08-17tdf#84323: Make osl::Thread::wait more readableStephan Bergmann
2015-07-17formatting of public/private/protected section qualifiersNoel Grandin
2015-02-23remove unnecessary parenthesis in return statementsNoel Grandin
2015-02-07loplugin:deletedspecialStephan Bergmann
2015-02-05Deprecate salhelper::SimpleReferenceObjectStephan Bergmann
2014-11-18More iwyu suggested headers removalRiccardo Magliocchetti
2014-11-17salhelper: include-what-you-use cleanup of public headersMichael Stahl
2014-10-08spelling: instanciated -> instantiatedNoel Grandin
2014-09-07create clang plugin to warn about C-style castsNoel Grandin
2014-07-14remove IReferenceNoel Grandin
2014-06-05various: remove SAL_THROW macroNoel Grandin