Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-15 15:18:42 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-15 15:20:27 +0300
commite66c3589a2a67d880f4d3dbfa7e3ba473c3751b8 (patch)
tree49911f8c6cfd58e258a7de98ecdaff64c908d5ad /release/darwin/entitlements.plist
parentef35dc68d665e652a1f44e8b0190f83beaeef9f2 (diff)
Fix T66986: errors with add-ons using ctypes in macOS release
Add extra entitlements to allow the kind of unsigned executable memory access that cytpes does.
Diffstat (limited to 'release/darwin/entitlements.plist')
-rw-r--r--release/darwin/entitlements.plist8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/darwin/entitlements.plist b/release/darwin/entitlements.plist
new file mode 100644
index 00000000000..a1c430a57ab
--- /dev/null
+++ b/release/darwin/entitlements.plist
@@ -0,0 +1,8 @@
+<?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.cs.allow-unsigned-executable-memory</key>
+ <true/>
+</dict>
+</plist>