diff options
author | info@mobile-stream.com <info@mobile-stream.com> | 2018-11-13 21:03:03 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-14 07:18:43 +0000 |
commit | 9c0fcabf43ee2ad8e78a9c8390aa9a7a05516145 (patch) | |
tree | abdcde428179e8fea12339cd15eb6c58b8e9eb97 | |
parent | eb560670fdcd3242acd38f86c082662f47c15aa4 (diff) | |
download | aports-9c0fcabf43ee2ad8e78a9c8390aa9a7a05516145.tar.bz2 aports-9c0fcabf43ee2ad8e78a9c8390aa9a7a05516145.tar.xz |
main/fprobe: fix build with gcc8
Another GNU-style inline case.
-rw-r--r-- | main/fprobe/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/fprobe/APKBUILD b/main/fprobe/APKBUILD index 21210a9302..3a1f27fa98 100644 --- a/main/fprobe/APKBUILD +++ b/main/fprobe/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=fprobe pkgver=1.1 -pkgrel=7 +pkgrel=8 pkgdesc="libpcap-based tool that collect network traffic" url="http://fprobe.sourceforge.net/" arch="all" @@ -31,6 +31,7 @@ prepare() { build() { cd "$_builddir" + CFLAGS="$CFLAGS -std=gnu89" \ ./configure \ --build=$CBUILD \ --host=$CHOST \ |