diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-05-07 01:56:04 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-05-07 01:56:04 +0100 |
commit | 854735ef34c730eec54571f1d694a68c10e21c81 (patch) | |
tree | c2b0e2fef394452b1e1fb8a371dfbb948b2fca6c /dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch | |
parent | 533feecd029facba89f4a4a6c754ccfd5baec747 (diff) |
dev-lang/spidermonkey : import from gentoo, compile with clang-12
Diffstat (limited to 'dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch')
-rw-r--r-- | dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch b/dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch new file mode 100644 index 00000000..708c7496 --- /dev/null +++ b/dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch @@ -0,0 +1,15 @@ +--- a/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2018-01-12 12:21:16.764318254 -0500 ++++ b/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2018-01-12 12:22:23.392069398 -0500 +@@ -93,10 +93,11 @@ + + if info['os'] == 'linux': + import ctypes ++ import ctypes.util + import errno + PR_SET_SECCOMP = 22 + SECCOMP_MODE_FILTER = 2 +- ctypes.CDLL("libc.so.6", use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0) ++ ctypes.CDLL(ctypes.util.find_library('c'), use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0) + info['has_sandbox'] = ctypes.get_errno() == errno.EFAULT + else: + info['has_sandbox'] = True |