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 4C6AD13965B for ; Sat, 29 Oct 2016 09:45:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 992A2E0AC9; Sat, 29 Oct 2016 09:45:55 +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 7A298E0AC9 for ; Sat, 29 Oct 2016 09:45:55 +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 0D3353413A6 for ; Sat, 29 Oct 2016 09:45:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39E282EF for ; Sat, 29 Oct 2016 09:45:51 +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: <1477734298.c110a9f43b68805d7ddb6774bf50edb0b0ace369.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/jasper/jasper-1.900.15.ebuild X-VCS-Directories: media-libs/jasper/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c110a9f43b68805d7ddb6774bf50edb0b0ace369 X-VCS-Branch: master Date: Sat, 29 Oct 2016 09:45:51 +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: 7db1d0e1-8f46-43a0-9bab-bbd06c120a38 X-Archives-Hash: 0faae941c634ac9ce7b3226dc2473944 commit: c110a9f43b68805d7ddb6774bf50edb0b0ace369 Author: David Seifert gentoo org> AuthorDate: Sat Oct 29 09:44:24 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 29 09:44:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c110a9f4 media-libs/jasper: Require C11 support Gentoo-bug: 598418 Package-Manager: portage-2.3.2 media-libs/jasper/jasper-1.900.15.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/media-libs/jasper/jasper-1.900.15.ebuild b/media-libs/jasper/jasper-1.900.15.ebuild index 7c007cd..5f00d8f 100644 --- a/media-libs/jasper/jasper-1.900.15.ebuild +++ b/media-libs/jasper/jasper-1.900.15.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit autotools multilib-minimal +inherit autotools flag-o-matic multilib-minimal DESCRIPTION="Implementation of the codec specified in the JPEG-2000 Part-1 standard" HOMEPAGE="http://www.ece.uvic.ca/~mdadams/jasper/" @@ -42,6 +42,13 @@ src_prepare() { eautoreconf } +src_configure() { + # bug 598418 + append-cflags -std=gnu11 + + multilib-minimal_src_configure +} + multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(use_enable jpeg libjpeg) \