From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 050DF1396D1 for ; Sat, 2 Sep 2017 12:38:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72CB0E0D1C; Sat, 2 Sep 2017 12:38:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5482CE0D1C for ; Sat, 2 Sep 2017 12:38:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7049F34166C for ; Sat, 2 Sep 2017 12:38:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 166258B59 for ; Sat, 2 Sep 2017 12:38:47 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1504355921.673e0702bc007ca40fd36ff2ad17b395ba710fc7.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/rhash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/rhash/rhash-1.3.5.ebuild X-VCS-Directories: app-crypt/rhash/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 673e0702bc007ca40fd36ff2ad17b395ba710fc7 X-VCS-Branch: master Date: Sat, 2 Sep 2017 12:38:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d8577d60-97fc-42b9-a997-d109b1ed5bbc X-Archives-Hash: 5d02aa43f3105a07a4e265a878046267 commit: 673e0702bc007ca40fd36ff2ad17b395ba710fc7 Author: James Le Cuirot gentoo org> AuthorDate: Sat Sep 2 12:37:41 2017 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Sep 2 12:38:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=673e0702 app-crypt/rhash: Apply -lintl fix to BSD libcs (bug #629060) Package-Manager: Portage-2.3.8, Repoman-2.3.2 app-crypt/rhash/rhash-1.3.5.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-crypt/rhash/rhash-1.3.5.ebuild b/app-crypt/rhash/rhash-1.3.5.ebuild index 77b468a64c5..5d6b901c8e6 100644 --- a/app-crypt/rhash/rhash-1.3.5.ebuild +++ b/app-crypt/rhash/rhash-1.3.5.ebuild @@ -57,7 +57,8 @@ multilib_src_compile() { $(use openssl && echo -ldl) ) - use elibc_Darwin || use elibc_SunOS && + use elibc_Darwin || use elibc_DragonFly || use elibc_FreeBSD || + use elibc_NetBSD || use elibc_OpenBSD || use elibc_SunOS && ADDLDFLAGS+=( $(use nls && echo -lintl) ) emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" \