summaryrefslogtreecommitdiff
path: root/www/libxul/files/patch-bug1336791
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2018-06-22 22:36:46 +0000
committerRene Ladan <rene@FreeBSD.org>2018-06-22 22:36:46 +0000
commitca06e3d4828a5e13642c6372a0f1e4874177ab6a (patch)
treed922eff923bca766ce1b71ff9565b573da9389a1 /www/libxul/files/patch-bug1336791
parentbsd.gecko.mk / USES=gecko : remove expired libxul support. (diff)
Remove expired port:
2018-06-20 www/libxul: NPAPI are no longer supported
Notes
Notes: svn path=/head/; revision=473092
Diffstat (limited to 'www/libxul/files/patch-bug1336791')
-rw-r--r--www/libxul/files/patch-bug133679121
1 files changed, 0 insertions, 21 deletions
diff --git a/www/libxul/files/patch-bug1336791 b/www/libxul/files/patch-bug1336791
deleted file mode 100644
index e9ed891a4c56..000000000000
--- a/www/libxul/files/patch-bug1336791
+++ /dev/null
@@ -1,21 +0,0 @@
-# Allow readelf to print types without parentheses
-
---- toolkit/library/dependentlibs.py
-+++ toolkit/library/dependentlibs.py
-@@ -57,11 +57,15 @@ def dependentlibs_readelf(lib):
- for line in proc.stdout:
- # Each line has the following format:
- # tag (TYPE) value
-+ # or with BSD readelf:
-+ # tag TYPE value
- # Looking for NEEDED type entries
- tmp = line.split(' ', 3)
-- if len(tmp) > 3 and tmp[2] == '(NEEDED)':
-+ if len(tmp) > 3 and 'NEEDED' in tmp[2]:
- # NEEDED lines look like:
- # 0x00000001 (NEEDED) Shared library: [libname]
-+ # or with BSD readelf:
-+ # 0x00000001 NEEDED Shared library: [libname]
- match = re.search('\[(.*)\]', tmp[3])
- if match:
- deps.append(match.group(1))