Skip to content

Commit

Permalink
Allow libatomic.so.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 4, 2024
1 parent 59d8fab commit e5b97a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ const ELF_ALLOWED_LIBRARIES: &[&str] = &[
"libpthread.so.0",
"librt.so.1",
"libutil.so.1",
"libatomic.so.1",
];

const PE_ALLOWED_LIBRARIES: &[&str] = &[
Expand Down Expand Up @@ -1487,8 +1488,7 @@ fn validate_extension_modules(
wanted.extend(GLOBAL_EXTENSIONS_LINUX_PRE_3_13);
}

if !is_linux_musl && matches!(python_major_minor, "3.9" | "3.10" | "3.11" | "3.12")
{
if !is_linux_musl && matches!(python_major_minor, "3.9" | "3.10" | "3.11" | "3.12") {
wanted.insert("ossaudiodev");
}
}
Expand Down

0 comments on commit e5b97a9

Please sign in to comment.