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 8935E1382C5 for ; Mon, 18 May 2020 13:44:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D29DEE081B; Mon, 18 May 2020 13:44:02 +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 B9E09E081B for ; Mon, 18 May 2020 13:44:02 +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 5327434EFEE for ; Mon, 18 May 2020 13:44:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7ED418F for ; Mon, 18 May 2020 13:43:59 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1589809433.c9083ec9e0bc6508dad28ae211d8e3647a1f08e5.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/squid/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/squid/squid-4.11.ebuild X-VCS-Directories: net-proxy/squid/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: c9083ec9e0bc6508dad28ae211d8e3647a1f08e5 X-VCS-Branch: master Date: Mon, 18 May 2020 13:43:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4e3d3ce3-0a88-483a-b406-1aaa4db3fe6e X-Archives-Hash: 546466891b9f5a172bf3be7c7008cf29 commit: c9083ec9e0bc6508dad28ae211d8e3647a1f08e5 Author: Sam James (sam_c) cmpct info> AuthorDate: Fri May 8 03:00:53 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon May 18 13:43:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9083ec9 net-proxy/squid: Fix 32-bit build Links against libatomic on 32-bit non-x86 arches. Bug: https://bugs.gentoo.org/719662 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sam James (sam_c) cmpct.info> Closes: https://github.com/gentoo/gentoo/pull/15705 Signed-off-by: Mikle Kolyada gentoo.org> net-proxy/squid/squid-4.11.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net-proxy/squid/squid-4.11.ebuild b/net-proxy/squid/squid-4.11.ebuild index b0fc4013b7d..978bb9b3922 100644 --- a/net-proxy/squid/squid-4.11.ebuild +++ b/net-proxy/squid/squid-4.11.ebuild @@ -5,7 +5,7 @@ EAPI=7 WANT_AUTOMAKE="1.15" -inherit autotools linux-info pam toolchain-funcs +inherit autotools flag-o-matic linux-info pam toolchain-funcs DESCRIPTION="A full-featured web proxy cache" HOMEPAGE="http://www.squid-cache.org/" @@ -173,6 +173,9 @@ src_configure() { # https://bugs.squid-cache.org/show_bug.cgi?id=4224 tc-is-cross-compiler && export squid_cv_gnu_atomics=no + # Bug #719662 + (use ppc || use arm || use hppa) && append-libs -latomic + econf \ --sysconfdir=/etc/squid \ --libexecdir=/usr/libexec/squid \