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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9C95158095 for ; Fri, 9 Sep 2022 08:24:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06DF6E091F; Fri, 9 Sep 2022 08:24:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3FC1E091F for ; Fri, 9 Sep 2022 08:24:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D31F340D7F for ; Fri, 9 Sep 2022 08:24:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C65945A4 for ; Fri, 9 Sep 2022 08:23:58 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1662711818.07aad3b2c6a3a12be810c8e510a9acbddb34dc14.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/bc/bc-1.07.1-r5.ebuild X-VCS-Directories: sys-devel/bc/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 07aad3b2c6a3a12be810c8e510a9acbddb34dc14 X-VCS-Branch: master Date: Fri, 9 Sep 2022 08:23:58 +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: aaf8788b-09fd-42bb-9f19-cbf72a575b6e X-Archives-Hash: 32fd4b5648af2920576bef8848ed9a0d commit: 07aad3b2c6a3a12be810c8e510a9acbddb34dc14 Author: Mike Frysinger chromium org> AuthorDate: Fri Sep 9 08:23:31 2022 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Sep 9 08:23:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07aad3b2 sys-devel/bc: fix building with USE=libedit #738602 Closes: https://bugs.gentoo.org/738602 Signed-off-by: Mike Frysinger gentoo.org> sys-devel/bc/bc-1.07.1-r5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-devel/bc/bc-1.07.1-r5.ebuild b/sys-devel/bc/bc-1.07.1-r5.ebuild index f9c1a2daa3e5..259b7a108902 100644 --- a/sys-devel/bc/bc-1.07.1-r5.ebuild +++ b/sys-devel/bc/bc-1.07.1-r5.ebuild @@ -45,6 +45,9 @@ src_configure() { fi use static && append-ldflags -static + # The libedit code isn't compatible currently. #830101 + use libedit && append-flags -fcommon + # AC_SYS_LARGEFILE in configure.ac would handle this, but we don't patch # autotools otherwise currently. This change has been sent upstream, but # who knows when they'll make another release.