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 45A9E139085 for ; Tue, 20 Dec 2016 21:35:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86363E0E6E; Tue, 20 Dec 2016 21:35:19 +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 4E16AE0E6E for ; Tue, 20 Dec 2016 21:35:19 +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 9810F340988 for ; Tue, 20 Dec 2016 21:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F57924DE for ; Tue, 20 Dec 2016 21:35:15 +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: <1482269647.dad0ac9a3fe3d4a2ad54b8e31e74cc6101ce78dc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild X-VCS-Directories: sys-fs/squashfs-tools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dad0ac9a3fe3d4a2ad54b8e31e74cc6101ce78dc X-VCS-Branch: master Date: Tue, 20 Dec 2016 21:35:15 +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: 7ef22443-de03-49f4-84bd-d15482934371 X-Archives-Hash: 9772fe471e9490e0a9fe175e3f9d3a5e commit: dad0ac9a3fe3d4a2ad54b8e31e74cc6101ce78dc Author: David Seifert gentoo org> AuthorDate: Tue Dec 20 21:34:07 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Dec 20 21:34:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad0ac9a sys-fs/squashfs-tools: Fix building with GCC 5 Gentoo-bug: 595290 Package-Manager: Portage-2.3.3, Repoman-2.3.1 sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild | 6 +++++- sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild | 6 +++++- sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild | 9 +++++++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild index 9a3ccd0..19db0eb 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-4.3-r1.ebuild @@ -4,7 +4,7 @@ EAPI="5" -inherit eutils toolchain-funcs +inherit eutils flag-o-matic toolchain-funcs DEB_VER="3" @@ -40,6 +40,10 @@ src_prepare() { use10() { usex $1 1 0 ; } src_configure() { + # restore GNU89 inline semantics to + # emit function symbols, bug 595290 + append-cflags -std=gnu89 + # set up make command line variables in EMAKE_SQUASHFS_CONF EMAKE_SQUASHFS_CONF=( LZMA_XZ_SUPPORT=$(use10 lzma) diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild index 8306efe..0de6708 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild @@ -3,7 +3,7 @@ EAPI="5" -inherit eutils toolchain-funcs flag-o-matic +inherit eutils flag-o-matic toolchain-funcs DEB_VER="3" @@ -43,6 +43,10 @@ src_prepare() { use10() { usex $1 1 0 ; } src_configure() { + # restore GNU89 inline semantics to + # emit function symbols, bug 595290 + append-cflags -std=gnu89 + # set up make command line variables in EMAKE_SQUASHFS_CONF EMAKE_SQUASHFS_CONF=( LZMA_XZ_SUPPORT=$(use10 lzma) diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild index 9d62b79..a902386 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit eutils toolchain-funcs + +inherit eutils flag-o-matic toolchain-funcs DESCRIPTION="Tool for creating compressed filesystem type squashfs" HOMEPAGE="http://squashfs.sourceforge.net" @@ -34,6 +35,10 @@ src_prepare() { use10() { usex $1 1 2 ; } src_configure() { + # restore GNU89 inline semantics to + # emit function symbols, bug 595290 + append-cflags -std=gnu89 + # set up make command line variables in EMAKE_SQUASHFS_CONF EMAKE_SQUASHFS_CONF=( LZMA_XZ_SUPPORT=$(use10 lzma)