Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/firefox/files: firefox-20-hppa.patch firefox-21-hppa.patch
Date: Wed, 05 Jun 2013 14:59:36
Message-Id: 20130605145933.C1E0021710@flycatcher.gentoo.org
1 jer 13/06/05 14:59:33
2
3 Added: firefox-20-hppa.patch firefox-21-hppa.patch
4 Log:
5 Marked ~hppa (bug #414297).
6
7 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.1 www-client/firefox/files/firefox-20-hppa.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/files/firefox-20-hppa.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/files/firefox-20-hppa.patch?rev=1.1&content-type=text/plain
14
15 Index: firefox-20-hppa.patch
16 ===================================================================
17 --- a/js/src/gc/RootMarking.cpp
18 +++ b/js/src/gc/RootMarking.cpp
19 @@ -314,7 +314,7 @@
20
21 uintptr_t *stackMin, *stackEnd;
22 #if JS_STACK_GROWTH_DIRECTION > 0
23 - stackMin = rt->nativeStackBase;
24 + stackMin = reinterpret_cast<uintptr_t *>(rt->nativeStackBase);
25 stackEnd = cgcd->nativeStackTop;
26 #else
27 stackMin = cgcd->nativeStackTop + 1;
28 --- a/xpcom/reflect/xptcall/src/md/unix/xptcstubs_pa32.cpp
29 +++ b/xpcom/reflect/xptcall/src/md/unix/xptcstubs_pa32.cpp
30 @@ -124,7 +124,7 @@
31 return result;
32 }
33
34 -extern "C" int SharedStub(int);
35 +extern "C" nsresult SharedStub(int);
36
37 #define STUB_ENTRY(n) \
38 nsresult nsXPTCStubBase::Stub##n() \
39
40
41
42 1.1 www-client/firefox/files/firefox-21-hppa.patch
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/files/firefox-21-hppa.patch?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/files/firefox-21-hppa.patch?rev=1.1&content-type=text/plain
46
47 Index: firefox-21-hppa.patch
48 ===================================================================
49 --- a/js/src/jsapi.cpp 2013-05-11 21:19:34.000000000 +0200
50 +++ b/js/src/jsapi.cpp 2013-05-28 17:39:15.347027000 +0200
51 @@ -892,7 +892,7 @@
52 PodZero(&atomState);
53
54 #if JS_STACK_GROWTH_DIRECTION > 0
55 - nativeStackLimit = UINTPTR_MAX;
56 + mainThread.nativeStackLimit = UINTPTR_MAX;
57 #endif
58 }