From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8BC31138252 for ; Tue, 10 May 2016 18:19:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE169E086A; Tue, 10 May 2016 18:19:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C561E086A for ; Tue, 10 May 2016 18:19:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 922C6340AB2 for ; Tue, 10 May 2016 18:19:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F8E4336 for ; Tue, 10 May 2016 18:19:06 +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: <1462904331.824fd17a4b55d2fd53da24228bbd1ffefa6cf97c.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 824fd17a4b55d2fd53da24228bbd1ffefa6cf97c X-VCS-Branch: master Date: Tue, 10 May 2016 18:19:06 +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: ab848da0-7210-4b77-811a-36a4cef34206 X-Archives-Hash: ad13c593b9a86f3699c76ba5e16bcd55 commit: 824fd17a4b55d2fd53da24228bbd1ffefa6cf97c Author: Fabian Groffen gentoo org> AuthorDate: Tue May 10 18:18:51 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue May 10 18:18:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=824fd17a scripts/bootstrap-prefix: fix bootstrapping glib, bug #582104 scripts/bootstrap-prefix.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 074276d..ad4de47 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1396,7 +1396,11 @@ bootstrap_stage3() { # temporarily work around c_rehash missing openssl dependency, bug #572790 CFLAGS= CXXFLAGS= emerge -1 openssl || return 1 - # Portage should figure out itself what it needs to do, if anything + # Portage should figure out itself what it needs to do, if anything. + # Avoid glib compiling for Cocoa libs if it finds them, since we're + # still with an old llvm that may not understand the system headers + # very well on Darwin (-DGNUSTEP_BASE_VERSION hack) + CPPFLAGS="-DGNUSTEP_BASE_VERSION" \ CFLAGS= CXXFLAGS= USE="-git" emerge -u system || return 1 # remove anything that we don't need (compilers most likely)