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 8D2D91382C5 for ; Sat, 28 Nov 2020 13:40:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EE98E0814; Sat, 28 Nov 2020 13:40:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 849ECE0814 for ; Sat, 28 Nov 2020 13:40:48 +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 526B6341168 for ; Sat, 28 Nov 2020 13:40:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86C423FB for ; Sat, 28 Nov 2020 13:40:45 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1606570836.7cb5959940da8564a30e3cfd9d579ef87bdb35fd.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-libs/glib/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: dev-libs/glib/glib-2.56.2.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 7cb5959940da8564a30e3cfd9d579ef87bdb35fd X-VCS-Branch: master Date: Sat, 28 Nov 2020 13:40:45 +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: a7698fd4-0182-4e6c-b047-a0ae4757208a X-Archives-Hash: d2caf105657f5168c553eef1cea007f2 commit: 7cb5959940da8564a30e3cfd9d579ef87bdb35fd Author: Fabian Groffen gentoo org> AuthorDate: Sat Nov 28 13:40:36 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Nov 28 13:40:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7cb59599 dev-libs/glib-2.56.2: fix macOS compilation using GCC Package-Manager: Portage-3.0.10-prefix, Repoman-3.0.2 RepoMan-Options: --force Signed-off-by: Fabian Groffen gentoo.org> dev-libs/glib/glib-2.56.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-libs/glib/glib-2.56.2.ebuild b/dev-libs/glib/glib-2.56.2.ebuild index a15483a56d..791f5bf75b 100644 --- a/dev-libs/glib/glib-2.56.2.ebuild +++ b/dev-libs/glib/glib-2.56.2.ebuild @@ -156,6 +156,10 @@ src_prepare() { glib/giounix.c || die fi + # disable native macOS integrations + sed -i -e '/glib_have_\(carbon\|cocoa\)=yes/s/yes/no/' \ + configure{.ac,} || die + gnome2_src_prepare }