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 1DF57138330 for ; Thu, 15 Sep 2016 07:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56B1DE0B5B; Thu, 15 Sep 2016 07:45:27 +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 F38B6E0B5B for ; Thu, 15 Sep 2016 07:45:26 +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 1A18D340906 for ; Thu, 15 Sep 2016 07:45:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45F592479 for ; Thu, 15 Sep 2016 07:45:24 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1473925515.f98f2d1e819cea8085f0c3bbc2771d363f430b72.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ucl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ucl/ucl-1.03-r1.ebuild X-VCS-Directories: dev-libs/ucl/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f98f2d1e819cea8085f0c3bbc2771d363f430b72 X-VCS-Branch: master Date: Thu, 15 Sep 2016 07:45:24 +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: 8cd0d7b2-f0ac-489c-91a8-5e098b725b52 X-Archives-Hash: c2692ab5e0fa0494cb1c0df719a0be6f commit: f98f2d1e819cea8085f0c3bbc2771d363f430b72 Author: David Seifert gentoo org> AuthorDate: Thu Sep 15 07:44:33 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Sep 15 07:45:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98f2d1e dev-libs/ucl: Allow for compiling with GCC 6 Gentoo-bug: 585632 Package-Manager: portage-2.3.0 dev-libs/ucl/ucl-1.03-r1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/ucl/ucl-1.03-r1.ebuild b/dev-libs/ucl/ucl-1.03-r1.ebuild index 49083ba..2a7d118 100644 --- a/dev-libs/ucl/ucl-1.03-r1.ebuild +++ b/dev-libs/ucl/ucl-1.03-r1.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -inherit autotools eutils +inherit autotools eutils flag-o-matic DESCRIPTION="the UCL Compression Library" HOMEPAGE="http://www.oberhumer.com/opensource/ucl/" @@ -32,6 +32,9 @@ src_prepare() { } src_configure() { + # bug #585632 + append-cflags -std=c90 + econf \ --enable-shared \ $(use_enable static-libs static)