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 68B981396D0 for ; Fri, 1 Sep 2017 07:00:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C9C4E0C5F; Fri, 1 Sep 2017 07:00:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 79D79E0C5F for ; Fri, 1 Sep 2017 07:00:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8C24034069A for ; Fri, 1 Sep 2017 07:00:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3774C89EF for ; Fri, 1 Sep 2017 07:00:47 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1504249235.3cc464a39d524238117c76c99c9803b973c201df.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/libgtop/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/libgtop/libgtop-2.36.0.ebuild X-VCS-Directories: gnome-base/libgtop/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 3cc464a39d524238117c76c99c9803b973c201df X-VCS-Branch: master Date: Fri, 1 Sep 2017 07:00:47 +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: 39259056-0d4a-46f2-8c5a-357ea9231f16 X-Archives-Hash: 9650967d1d5ebb39de7837f7a9ba22f6 commit: 3cc464a39d524238117c76c99c9803b973c201df Author: Gilles Dartiguelongue gentoo org> AuthorDate: Fri Sep 1 06:18:50 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Fri Sep 1 07:00:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc464a3 gnome-base/libgtop: fix build with gcc-4, bug ##628256 Package-Manager: Portage-2.3.8, Repoman-2.3.3 gnome-base/libgtop/libgtop-2.36.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnome-base/libgtop/libgtop-2.36.0.ebuild b/gnome-base/libgtop/libgtop-2.36.0.ebuild index 3bc7dfcd3b5..e2c0e948532 100644 --- a/gnome-base/libgtop/libgtop-2.36.0.ebuild +++ b/gnome-base/libgtop/libgtop-2.36.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit gnome2 +inherit flag-o-matic gnome2 DESCRIPTION="A library that provides top functionality to applications" HOMEPAGE="https://git.gnome.org/browse/libgtop" @@ -23,6 +23,9 @@ DEPEND="${RDEPEND} " src_configure() { + # Add explicit stdc, bug #628256 + append-cflags "-std=c99" + gnome2_src_configure \ --disable-static \ $(use_enable introspection)