From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CB16513829C for ; Sat, 11 Jun 2016 08:13:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1871254027; Sat, 11 Jun 2016 08:13:42 +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 865E5254027 for ; Sat, 11 Jun 2016 08:13:42 +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 BFF323408CF for ; Sat, 11 Jun 2016 08:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E71BEC78 for ; Sat, 11 Jun 2016 08:13:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1465632749.c8b9bb96e2635f97d4d0063fd39b4ee794e3104c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/rtmpdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild media-video/rtmpdump/rtmpdump-9999.ebuild X-VCS-Directories: media-video/rtmpdump/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c8b9bb96e2635f97d4d0063fd39b4ee794e3104c X-VCS-Branch: master Date: Sat, 11 Jun 2016 08:13:35 +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: a4a372fc-3ea2-4120-bfc6-621be41cd7af X-Archives-Hash: 65c6576da12bc0d3ed690bb8710ee515 commit: c8b9bb96e2635f97d4d0063fd39b4ee794e3104c Author: Craig Andrews integralblue com> AuthorDate: Thu Jun 9 17:37:22 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 11 08:12:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b9bb96 media-video/rtmpdump: add -std=gnu89 to CFLAGS to restore pre-GCC5 semantics Bug: https://bugs.gentoo.org/571106 Pull-Request: https://github.com/gentoo/gentoo/pull/1644 Package-Manager: portage-2.3.0_rc1 media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild | 2 ++ media-video/rtmpdump/rtmpdump-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild b/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild index 5e9d26c..b0191ae 100644 --- a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild +++ b/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild @@ -38,6 +38,8 @@ src_unpack() { } src_prepare() { + # fix #571106 by restoring pre-GCC5 inline semantics + append-cflags -std=gnu89 # fix Makefile ( bug #298535 , bug #318353 and bug #324513 ) sed -i 's/\$(MAKEFLAGS)//g' Makefile \ || die "failed to fix Makefile" diff --git a/media-video/rtmpdump/rtmpdump-9999.ebuild b/media-video/rtmpdump/rtmpdump-9999.ebuild index 25d5e75..de3ef6a 100644 --- a/media-video/rtmpdump/rtmpdump-9999.ebuild +++ b/media-video/rtmpdump/rtmpdump-9999.ebuild @@ -32,6 +32,8 @@ pkg_setup() { } src_prepare() { + # fix #571106 by restoring pre-GCC5 inline semantics + append-cflags -std=gnu89 # fix Makefile ( bug #298535 , bug #318353 and bug #324513 ) sed -i 's/\$(MAKEFLAGS)//g' Makefile \ || die "failed to fix Makefile"