From 52b51f73609113386a4fceb5310262e1e96932d0 Mon Sep 17 00:00:00 2001 From: Ian Stakenvicius Date: Fri, 12 Jan 2018 20:47:27 -0500 Subject: dev-lang/spidermonkey:38 - don't hardcode libc soname This patch attempts to fix issues linking to libc on platforms whos libc is not libc.so.6 (ie, ia64 and others). Bug: http://bugs.gentoo.org/631574 Package-Manager: Portage-2.3.13, Repoman-2.3.3 --- .../files/moz38-dont-hardcode-libc-soname.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 dev-lang/spidermonkey/files/moz38-dont-hardcode-libc-soname.patch (limited to 'dev-lang/spidermonkey/files') 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 000000000000..708c7496975f --- /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 -- cgit v1.2.3-18-g5258