diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-05-11 20:06:15 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-05-11 20:06:15 +0100 |
commit | 2d4d826dadc3ca20051496dbb658324a06376adc (patch) | |
tree | a7c927cd2c55e858e3c4463e5ea4d24b40e822d7 /dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch | |
parent | 9b6bfa5904b275bbfe1dffad061453d47bda52f1 (diff) |
dev-lang/spidermonkey : drop, use ::gentoo ebuild
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, 0 insertions, 15 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 deleted file mode 100644 index 708c7496..00000000 --- a/dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- 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 |