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 A0A8F1396D0 for ; Mon, 11 Sep 2017 12:17:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90ABEE0C11; Mon, 11 Sep 2017 12:17:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 6CD99E0C11 for ; Mon, 11 Sep 2017 12:17:06 +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 81272341723 for ; Mon, 11 Sep 2017 12:17:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 255CC907E for ; Mon, 11 Sep 2017 12:17:04 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1505132205.93044b37790474cb0723b235fc654cb9913f3c47.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/qxmledit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/qxmledit/qxmledit-0.9.7.ebuild X-VCS-Directories: app-editors/qxmledit/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 93044b37790474cb0723b235fc654cb9913f3c47 X-VCS-Branch: master Date: Mon, 11 Sep 2017 12:17:04 +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: 8f1e0735-0126-47bf-96ca-bcaf55fa9ddb X-Archives-Hash: 8fd6fdf8154ea88480f1e1ae532181c3 commit: 93044b37790474cb0723b235fc654cb9913f3c47 Author: Michael Palimaka gentoo org> AuthorDate: Mon Sep 11 12:11:43 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Sep 11 12:16:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93044b37 app-editors/qxmledit: disable PCH on x86 This is done to work around internal compiler errors. Package-Manager: Portage-2.3.6, Repoman-2.3.3 app-editors/qxmledit/qxmledit-0.9.7.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-editors/qxmledit/qxmledit-0.9.7.ebuild b/app-editors/qxmledit/qxmledit-0.9.7.ebuild index fb26b9c080a..c95c9c95543 100644 --- a/app-editors/qxmledit/qxmledit-0.9.7.ebuild +++ b/app-editors/qxmledit/qxmledit-0.9.7.ebuild @@ -56,6 +56,9 @@ src_configure() { QXMLEDIT_INST_DATA_DIR="${EPREFIX}/usr/share/${PN}" \ QXMLEDIT_INST_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" + # avoid internal compiler errors + use x86 && export QXMLEDIT_INST_AVOID_PRECOMP_HEADERS=Y + eqmake5 }