Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bcrypt_pbkdf/
Date: Mon, 02 Apr 2018 06:56:00
Message-Id: 1522652136.f6f304336d036d81d199cd4be4a9975ec9840d5e.graaff@gentoo
1 commit: f6f304336d036d81d199cd4be4a9975ec9840d5e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 2 06:55:36 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 2 06:55:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f30433
7
8 fix compilation when functions are not inlined
9
10 Closes: https://bugs.gentoo.org/629164
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild | 3 +++
14 1 file changed, 3 insertions(+)
15
16 diff --git a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
17 index 692e9373f3d..0370d800224 100644
18 --- a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
19 +++ b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
20 @@ -30,6 +30,9 @@ all_ruby_prepare() {
21
22 each_ruby_configure() {
23 ${RUBY} -Cext/mri extconf.rb || die
24 +
25 + # Some methods may not be inlined on x86 but they are not defined either, bug 629164
26 + sed -i -e 's:-Wl,--no-undefined::' ext/mri/Makefile || die
27 }
28
29 each_ruby_compile() {