diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2021-05-22 07:24:20 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2021-05-22 07:27:12 +0300 |
commit | 17be1ab306e3682d789cad94c6195b8999af8acf (patch) | |
tree | 18949a2b6853e8e1130f27b4b654c9aca702e438 /media-libs/avidemux-core | |
parent | app-misc/livecd-tools: Drop old versions (diff) | |
download | gentoo-17be1ab306e3682d789cad94c6195b8999af8acf.tar.gz gentoo-17be1ab306e3682d789cad94c6195b8999af8acf.tar.bz2 gentoo-17be1ab306e3682d789cad94c6195b8999af8acf.zip |
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@gentoo.org>
Diffstat (limited to 'media-libs/avidemux-core')
-rw-r--r-- | media-libs/avidemux-core/avidemux-core-2.7.6.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
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 a43ad8aca26f..6f2b5d5eb4bf 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}' |