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 B1D34138334 for ; Mon, 14 Oct 2019 03:14:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6494E086E; Mon, 14 Oct 2019 03:14:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 41CC2E086E for ; Mon, 14 Oct 2019 03:14:30 +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 B441F34BCCF for ; Mon, 14 Oct 2019 03:14:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B1292A5 for ; Mon, 14 Oct 2019 03:14:26 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1571022860.47b6d14488f624111daa564f40ec49fc223b623c.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/features/prefix/standalone/kernel-2.6.16+/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/features/prefix/standalone/kernel-2.6.16+/package.use.mask X-VCS-Directories: profiles/features/prefix/standalone/kernel-2.6.16+/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 47b6d14488f624111daa564f40ec49fc223b623c X-VCS-Branch: master Date: Mon, 14 Oct 2019 03:14:26 +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: 5581198b-75ff-484d-8f5b-ffd016b4588b X-Archives-Hash: 6a7e698955f273ee113d42ff1e839d39 commit: 47b6d14488f624111daa564f40ec49fc223b623c Author: Benda Xu gentoo org> AuthorDate: Mon Oct 14 03:11:31 2019 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Oct 14 03:14:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47b6d144 p/f/prefix/s/kernel-2.6.16+/package.use.mask: mask mesa USE flags. USE='egl gles2 gallium llvm' contains unconditional code calling F_DUPFD_CLOEXEC. Signed-off-by: Benda Xu gentoo.org> .../features/prefix/standalone/kernel-2.6.16+/package.use.mask | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/package.use.mask b/profiles/features/prefix/standalone/kernel-2.6.16+/package.use.mask index b5f69351385..fdc243ff8a1 100644 --- a/profiles/features/prefix/standalone/kernel-2.6.16+/package.use.mask +++ b/profiles/features/prefix/standalone/kernel-2.6.16+/package.use.mask @@ -1,6 +1,12 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Benda Xu (2019-10-14) +# The following mesa components calls fcntl(fd, F_DUPFD_CLOEXEC, 3) directly +# without checking. That results on build time failure, because we have +# stripped away F_DUPFD_CLOEXEC from glibc for this profile. +media-libs/mesa egl gles2 gallium llvm + # Benda Xu (2018-02-21) # We are on an old kernel that only glibc-2.19 is supported. That glibc does # not build with PIE enabled. glibc-2.19 and linux-2.6.16 is end of life