macOS /w Xcode 15: force the old linker when targeting macOS 11 or lower
[libreoffice.git] / hardened_runtime.xcent.in
blob74318ba0efe824337c8bb51341c23ed4bdad1920
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3 <plist version="1.0">
4 <dict>
5 <!-- AppleScript support -->
6 <key>com.apple.security.automation.apple-events</key>
7 <true/>
8 <!-- Needed for our C++/binary UNO bridge runtime machine code generation: -->
9 <key>com.apple.security.cs.allow-jit</key>
10 <true/>
11 <!-- Needed for our C++/binary UNO bridge runtime machine code generation on old macOS that
12 reject mmap MAP_JIT (macOS <= 10.13?); and for in-process JVM: -->
13 <key>com.apple.security.cs.disable-executable-page-protection</key>
14 <true/>
15 <!-- allow use of third-party plugins/frameworks (aka Java) -->
16 <key>com.apple.security.cs.disable-library-validation</key>
17 <true/>
18 <!-- Allow Base to import data from Address Book -->
19 <key>com.apple.security.personal-information.addressbook</key>
20 <true/>
21 @GET_TASK_ALLOW_ENTITLEMENT@
22 </dict>
23 </plist>