Skip to content

Commit b146e9d

Browse files
committed
Allow UniformTypeIdentifiers.framework to be dynamically linked
1 parent 462c2e8 commit b146e9d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/validation.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
388388
max_compatibility_version: "1.0.0".try_into().unwrap(),
389389
required: true,
390390
},
391+
MachOAllowedDylib {
392+
name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(),
393+
max_compatibility_version: "1.0.0".try_into().unwrap(),
394+
required: true,
395+
},
391396
MachOAllowedDylib {
392397
name: "/usr/lib/libedit.3.dylib".to_string(),
393398
max_compatibility_version: "2.0.0".try_into().unwrap(),

0 commit comments

Comments
 (0)