Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/
Date: Sun, 03 Feb 2019 22:55:43
Message-Id: 1549231846.f6b343ff244032fbd937dc2994589d7ca47a1ce6.gyakovlev@gentoo
1 commit: f6b343ff244032fbd937dc2994589d7ca47a1ce6
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 3 11:52:56 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 22:10:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b343ff
7
8 dev-java/icedtea: re-add mincoming-stack-boundary=2 on x86
9
10 it was lost on bump
11 Bug: https://bugs.gentoo.org/677138
12 Package-Manager: Portage-2.3.59, Repoman-2.3.12
13 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
14
15 dev-java/icedtea/icedtea-3.10.0.ebuild | 5 ++++-
16 1 file changed, 4 insertions(+), 1 deletion(-)
17
18 diff --git a/dev-java/icedtea/icedtea-3.10.0.ebuild b/dev-java/icedtea/icedtea-3.10.0.ebuild
19 index c47e7ca17b5..9dafe7d9ab9 100644
20 --- a/dev-java/icedtea/icedtea-3.10.0.ebuild
21 +++ b/dev-java/icedtea/icedtea-3.10.0.ebuild
22 @@ -10,7 +10,7 @@
23 EAPI="6"
24 SLOT="8"
25
26 -inherit check-reqs gnome2-utils java-pkg-2 java-vm-2 multiprocessing pax-utils prefix versionator
27 +inherit check-reqs flag-o-matic gnome2-utils java-pkg-2 java-vm-2 multiprocessing pax-utils prefix versionator
28
29 ICEDTEA_VER=$(get_version_component_range 1-3)
30 ICEDTEA_BRANCH=$(get_version_component_range 1-2)
31 @@ -233,6 +233,9 @@ src_configure() {
32 # In-tree JIT ports are available for amd64, arm, arm64, ppc64 (be&le), SPARC and x86.
33 if { use amd64 || use arm || use arm64 || use ppc64 || use sparc || use x86; }; then
34 hotspot_port="yes"
35 +
36 + # Work around stack alignment issue, bug #647954.
37 + use x86 && append-flags -mincoming-stack-boundary=2
38 fi
39
40 # Always use HotSpot as the primary VM if available. #389521 #368669 #357633 ...