diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-06-29 13:17:14 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-06-29 16:53:59 +0200 |
commit | c78b49ec132eb5126445ebee7d259d3df7fcaa68 (patch) | |
tree | d18137132c61be920ba351d8bff21c0fc3a445e8 /lo.xcent.in | |
parent | d1739c8c735bcf890167c63b5559f2610e5a017a (diff) |
don't specify entitlements that are not used (sdremote w/o bluetooth)
the network.server entitlement is only needed when the sdremote is
enabled, and the bluetooth one only when the bluetooth part is built.
Also warn about bluetooth not being built because of obsoleted/removed
API. It was "silently" dropped before (lost in the flood of configure
output).
Change-Id: I38d83aa1132307b5b4b5d6dceba8f9020ffb2373
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136617
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'lo.xcent.in')
-rw-r--r-- | lo.xcent.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lo.xcent.in b/lo.xcent.in new file mode 100644 index 000000000000..9a0838fbc388 --- /dev/null +++ b/lo.xcent.in @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>com.apple.security.app-sandbox</key> + <true/> + <key>com.apple.security.files.bookmarks.app-scope</key> + <true/> + <key>com.apple.security.files.bookmarks.document-scope</key> + <true/> + <key>com.apple.security.files.bookmarks.collection-scope</key> + <true/> + <key>com.apple.security.files.user-selected.read-write</key> + <true/> + <key>com.apple.security.network.client</key> + <true/> + <key>com.apple.security.print</key> + <true/> + <key>com.apple.security.cs.disable-executable-page-protection</key> + <true/> + <!-- Allow Base to import data from Address Book --> + <key>com.apple.security.personal-information.addressbook</key> + <true/> +@SDREMOTE_ENTITLEMENT@ +</dict> +</plist> |