diff options
author | Jory Pratt <anarchy@gentoo.org> | 2012-10-21 19:31:15 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2012-10-21 19:31:15 +0000 |
commit | 6e5a6f62d0a81850f46ed0f0bc40eb739d336dc8 (patch) | |
tree | fa929d7ecda290a252028a42ba01896b658141ba /dev-lang | |
parent | x11-drivers/xf86-video-intel: Prune older 2.20.x revisions (diff) | |
download | gentoo-2-6e5a6f62d0a81850f46ed0f0bc40eb739d336dc8.tar.gz gentoo-2-6e5a6f62d0a81850f46ed0f0bc40eb739d336dc8.tar.bz2 gentoo-2-6e5a6f62d0a81850f46ed0f0bc40eb739d336dc8.zip |
Add fix for freebsd, bug #438746
(Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 0x9019241D)
Diffstat (limited to 'dev-lang')
4 files changed, 21 insertions, 3 deletions
diff --git a/dev-lang/spidermonkey/ChangeLog b/dev-lang/spidermonkey/ChangeLog index cf240f5a5f06..e06620094af3 100644 --- a/dev-lang/spidermonkey/ChangeLog +++ b/dev-lang/spidermonkey/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/spidermonkey # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/ChangeLog,v 1.83 2012/10/19 05:04:22 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/ChangeLog,v 1.84 2012/10/21 19:31:15 anarchy Exp $ + + 21 Oct 2012; <anarchy@gentoo.org> spidermonkey-1.8.5-r1.ebuild, + spidermonkey-1.8.7.ebuild, +files/spidermonkey-1.8.7-freebsd-pthreads.patch: + Add fix for freebsd, bug #438746 19 Oct 2012; Andreas Schuerch <nativemad@gentoo.org> spidermonkey-1.8.5-r1.ebuild: diff --git a/dev-lang/spidermonkey/files/spidermonkey-1.8.7-freebsd-pthreads.patch b/dev-lang/spidermonkey/files/spidermonkey-1.8.7-freebsd-pthreads.patch new file mode 100644 index 000000000000..4324df0d6093 --- /dev/null +++ b/dev-lang/spidermonkey/files/spidermonkey-1.8.7-freebsd-pthreads.patch @@ -0,0 +1,11 @@ +--- a/js/src/config/system-headers ++++ b/js/src/config/system-headers +@@ -595,6 +595,7 @@ proto/exec.h + psap.h + Pt.h + pthread.h ++pthread_np.h + pwd.h + Python.h + QDOffscreen.h + diff --git a/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild b/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild index e6acdc907b28..8652124a0126 100644 --- a/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild,v 1.13 2012/10/19 05:04:22 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild,v 1.14 2012/10/21 19:31:15 anarchy Exp $ EAPI="3" WANT_AUTOCONF="2.1" @@ -41,6 +41,8 @@ src_prepare() { epatch "${FILESDIR}/${P}-fix-ppc64.patch" # https://bugs.gentoo.org/show_bug.cgi?id=400727 epatch "${FILESDIR}/${P}-arm_resprect_cflags-1.patch" + # https://bugs.gentoo.org/show_bug.cgi?id=438746 + epatch "${FILESDIR}"/${PN}-1.8.7-freebsd-pthreads.patch epatch_user diff --git a/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild b/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild index e53535cd0f73..f8fdcdd1fd06 100644 --- a/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild,v 1.4 2012/07/04 18:51:57 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild,v 1.5 2012/10/21 19:31:15 anarchy Exp $ EAPI="3" WANT_AUTOCONF="2.1" @@ -45,6 +45,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-1.8.5-fix-install-symlinks.patch epatch "${FILESDIR}"/${PN}-1.8.7-filter_desc.patch + epatch "${FILESDIR}"/${PN}-1.8.7-freebsd-pthreads.patch epatch "${FILESDIR}"/${PN}-1.8.7-x32.patch epatch_user |