diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-12-01 17:08:43 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-12-10 15:21:00 +0100 |
commit | b9113b2548f8c7fbe8100f7a6813a95a06db9f4a (patch) | |
tree | f8098c8c71c93f6d3b9d241f3a6a63a3849afee5 | |
parent | c4cf076342f3e292a17ced3b9e33bf12e091b856 (diff) |
mac-sandboxing: also exclude AppleRemote when using --enable-mergelibs
mergelibs have been added to the LibreOfficeMacOSX distro config in
e6e22bee153e36989069124e8d1a55d6d6ba433a, but AppleRemote has been
disabled in the sandboxing case since 2013
4fe9ef81aa83403bd3b7df555ccbd96cbdfd7c2d "The AppleRemote code is
blocked by sandboxing so bypass it in that case"
(unclear to me whether fundamentally not working or whether it was
disabled to get sandboxing as a whole in a working state quickly, since
there was an earlier entitlement for mac.remotecontrols)
Change-Id: I8514319b1d9ffa3a993267eaebac0c2ff058740f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177621
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
(cherry picked from commit 827fa4cb7bba8dc5f101c6325075d5b54210cd01)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177623
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit 1bac856b6081a10397c8511405233ef4d548af4f)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177724
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
-rw-r--r-- | Library_merged.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library_merged.mk b/Library_merged.mk index 843dcb058245..946b3af6285a 100644 --- a/Library_merged.mk +++ b/Library_merged.mk @@ -39,7 +39,7 @@ endif ifeq ($(OS),MACOSX) $(eval $(call gb_Library_use_libraries,merged,\ - AppleRemote \ + $(if $(ENABLE_MACOSX_SANDBOX),,AppleRemote) \ )) endif |