From f529d6d6f4aba1f3f0df8dcf6d0bb140e747107f Mon Sep 17 00:00:00 2001 From: Joe Kappus Date: Fri, 30 May 2025 17:46:53 -0400 Subject: [PATCH] net-analyzer/iftop: build with -std=gnu17 Closes: https://bugs.gentoo.org/944909 Signed-off-by: Joe Kappus Part-of: https://github.com/gentoo/gentoo/pull/42363 Closes: https://github.com/gentoo/gentoo/pull/42363 Signed-off-by: Sam James --- net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild b/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild index 7a8c6b86167f0..597c47c9d8739 100644 --- a/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild +++ b/net-analyzer/iftop/iftop-1.0_pre4-r5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Display bandwidth usage on an interface" HOMEPAGE="https://www.ex-parrot.com/pdw/iftop/ https://code.blinkace.com/pdw/iftop" @@ -38,6 +38,9 @@ PATCHES=( src_prepare() { default + #bug 944029 + append-cflags -std=gnu17 + eautoreconf }