diff options
author | Sam James <sam@gentoo.org> | 2024-12-09 05:15:18 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-12-09 05:15:47 +0000 |
commit | de9679405cf3aec71e835a94846ceb13ef69958d (patch) | |
tree | 0b7ab52b8325b7a054207bbbf58ae6e667930170 /net-dialup | |
parent | lxde-base/lxinput: build w/ -std=gnu17 (diff) | |
download | gentoo-de9679405cf3aec71e835a94846ceb13ef69958d.tar.gz gentoo-de9679405cf3aec71e835a94846ceb13ef69958d.tar.bz2 gentoo-de9679405cf3aec71e835a94846ceb13ef69958d.zip |
net-dialup/ppp: build w/ -std=gnu17
Old codebase.
Closes: https://bugs.gentoo.org/943931
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/ppp/ppp-2.5.1-r1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net-dialup/ppp/ppp-2.5.1-r1.ebuild b/net-dialup/ppp/ppp-2.5.1-r1.ebuild index 9d96fe11bf66..4009514c3ccd 100644 --- a/net-dialup/ppp/ppp-2.5.1-r1.ebuild +++ b/net-dialup/ppp/ppp-2.5.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit linux-info pam tmpfiles +inherit flag-o-matic linux-info pam tmpfiles DESCRIPTION="Point-to-Point Protocol (PPP)" HOMEPAGE="https://ppp.samba.org/" @@ -70,6 +70,9 @@ src_prepare() { } src_configure() { + # bug #944065 + append-cflags -std=gnu17 + local args=( --localstatedir="${EPREFIX}"/var --runstatedir="${EPREFIX}"/run |