summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@gentoo.org>2009-07-21 14:01:40 +0000
committerNirbheek Chauhan <nirbheek@gentoo.org>2009-07-21 14:01:40 +0000
commit3d95f00745f0454585125d0dcbe319e0085a999a (patch)
tree82fc6085f2e451174d31c84960d27fd0c5ba92ac /net-libs/xulrunner/files
parentVersion bump, bug #278564, thank Alex Legler for report. Remove vulnerable ve... (diff)
downloadgentoo-2-3d95f00745f0454585125d0dcbe319e0085a999a.tar.gz
gentoo-2-3d95f00745f0454585125d0dcbe319e0085a999a.tar.bz2
gentoo-2-3d95f00745f0454585125d0dcbe319e0085a999a.zip
Bump to 3.5.1 (aka 1.9.1-r1) + new patch tarball
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'net-libs/xulrunner/files')
-rw-r--r--net-libs/xulrunner/files/066-fix-includedir-mozilla-js.patch24
-rw-r--r--net-libs/xulrunner/files/067-force-bundled-ply.patch16
2 files changed, 0 insertions, 40 deletions
diff --git a/net-libs/xulrunner/files/066-fix-includedir-mozilla-js.patch b/net-libs/xulrunner/files/066-fix-includedir-mozilla-js.patch
deleted file mode 100644
index 490042730cd9..000000000000
--- a/net-libs/xulrunner/files/066-fix-includedir-mozilla-js.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-mozjs stuff is actually in /unstable not in /stable
-
-Causes bugs like http://bugs.gentoo.org/275318
-
-Upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=500645
-
-Will likely be fixed in 1.9.2
-
----
---- xulrunner/installer/mozilla-js.pc.in 2009-06-26 08:37:34.458635913 -0500
-+++ xulrunner/installer/mozilla-js.pc.in 2009-06-26 08:38:13.623656097 -0500
-@@ -1,10 +1,11 @@
- prefix=%prefix%
- sdkdir=%sdkdir%
- includedir=%includedir%
-+includetypes=unstable
-
- Name: JavaScript
- Description: The Mozilla JavaScript Library
- Version: %MOZILLA_VERSION%
- Requires: %NSPR_NAME% >= %NSPR_VERSION%
- Libs: -L${sdkdir}/lib -lmozjs
--Cflags: -I${includedir}/stable -DXP_UNIX -DJS_THREADSAFE
-+Cflags: -I${includedir}/${includetypes} -DXP_UNIX -DJS_THREADSAFE
diff --git a/net-libs/xulrunner/files/067-force-bundled-ply.patch b/net-libs/xulrunner/files/067-force-bundled-ply.patch
deleted file mode 100644
index 6382ae70efa4..000000000000
--- a/net-libs/xulrunner/files/067-force-bundled-ply.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-# Patch submitted to force ply support bundled with source.
-# Hector Martin <hector@marcansoft.com>
-# Further info can be found at http://bugs.gentoo.org/show_bug.cgi?id=276018
-
---- mozilla-1.9.1/xpcom/idl-parser/xpidl.py
-+++ mozilla-1.9.1/xpcom/idl-parser/xpidl.py
-@@ -42,7 +42,7 @@
-
- import sys, os.path, re
-
--sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
-+sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
- 'other-licenses', 'ply'))
- from ply import lex, yacc
-
-