diff options
author | 2024-11-26 06:04:52 +0000 | |
---|---|---|
committer | 2024-11-26 06:05:25 +0000 | |
commit | febbda1a16f479f24280c7f63dc2af08eef030bc (patch) | |
tree | 003fdfac67c8de46c1a54d0b5b776265c1785cea /app-text | |
parent | media-plugins/mpg123-output-plugins: add 1.32.9 (diff) | |
download | gentoo-febbda1a16f479f24280c7f63dc2af08eef030bc.tar.gz gentoo-febbda1a16f479f24280c7f63dc2af08eef030bc.tar.bz2 gentoo-febbda1a16f479f24280c7f63dc2af08eef030bc.zip |
app-text/mpage: build w/ -std=gnu17
Closes: https://bugs.gentoo.org/944758
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/mpage/mpage-2.5.6-r1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-text/mpage/mpage-2.5.6-r1.ebuild b/app-text/mpage/mpage-2.5.6-r1.ebuild index f5e91377a3b5..fb9c061f1fb7 100644 --- a/app-text/mpage/mpage-2.5.6-r1.ebuild +++ b/app-text/mpage/mpage-2.5.6-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Many to one page printing utility" HOMEPAGE="http://www.mesa.nl/" @@ -24,6 +24,8 @@ PATCHES=( ) src_configure() { + # bug #944758 + append-flags -std=gnu17 tc-export CC } |