commit: 17be1ab306e3682d789cad94c6195b8999af8acf Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> AuthorDate: Sat May 22 04:24:20 2021 +0000 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> CommitDate: Sat May 22 04:27:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17be1ab3
media-libs/avidemux-core: fix build with gcc-11 Stay on C++14 stardard (GNU variant) Closes: https://bugs.gentoo.org/768210 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org> media-libs/avidemux-core/avidemux-core-2.7.6.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/avidemux-core/avidemux-core-2.7.6.ebuild b/media-libs/avidemux-core/avidemux-core-2.7.6.ebuild index a43ad8aca26..6f2b5d5eb4b 100644 --- a/media-libs/avidemux-core/avidemux-core-2.7.6.ebuild +++ b/media-libs/avidemux-core/avidemux-core-2.7.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -75,6 +75,8 @@ src_prepare() { src_configure() { # See bug 432322. use x86 && replace-flags -O0 -O1 + # Bug 768210 + append-cxxflags -std=gnu++14 local mycmakeargs=( -DAVIDEMUX_SOURCE_DIR='${S}'
