sfx2/qa/uitest/doc/objserv.py | 1 + xmlsecurity/Module_xmlsecurity.mk | 2 ++ 2 files changed, 3 insertions(+)
New commits: commit 9784645d3f3a45ce826e7bb0d92f82f23d08bfed Author: Miklos Vajna <[email protected]> AuthorDate: Tue Oct 7 13:27:36 2025 +0200 Commit: Miklos Vajna <[email protected]> CommitDate: Wed Oct 8 11:49:12 2025 +0200 xmlsecurity: fix --disable-gpgmepp build xmlsecurity/Library_xsec_xmlsec.mk already uses the ENABLE_GPGMEPP conditional to build gpg code, but this test was added unconditionally. Change-Id: I7235ca76eb2d2f0d36dc3bf692e866251edf583d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192065 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins diff --git a/sfx2/qa/uitest/doc/objserv.py b/sfx2/qa/uitest/doc/objserv.py index e2dc49058679..71e8f9cfd16b 100644 --- a/sfx2/qa/uitest/doc/objserv.py +++ b/sfx2/qa/uitest/doc/objserv.py @@ -8,6 +8,7 @@ from uitest.framework import UITestCase from uitest.uihelper.common import get_url_for_data_file import os + # Test for sfx2/source/doc/objserv.cxx. class Test(UITestCase): diff --git a/xmlsecurity/Module_xmlsecurity.mk b/xmlsecurity/Module_xmlsecurity.mk index afb1e251586a..f2cdbee6ffa8 100644 --- a/xmlsecurity/Module_xmlsecurity.mk +++ b/xmlsecurity/Module_xmlsecurity.mk @@ -48,9 +48,11 @@ $(eval $(call gb_Module_add_screenshot_targets,xmlsecurity,\ CppunitTest_xmlsecurity_dialogs_test \ )) +ifeq ($(ENABLE_GPGMEPP),TRUE) $(eval $(call gb_Module_add_uicheck_targets,xmlsecurity,\ UITest_xmlsecurity_gpg \ )) +endif ifneq (,$(filter DESKTOP,$(BUILD_TYPE))) ifneq (,$(or $(ENABLE_NSS),$(filter WNT,$(OS))))
