From 898e1177e4fcabd27dd1f4f95ac645bea2c9eb87 Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 5 May 2026 00:32:00 +0000 Subject: [PATCH] community/f3: disable on 32-bit arches Version 10.0 failed on the edge and 3.24 builders (armhf, armv7, x86). ``` In file included from src/libflow.h:11, from src/libflow.c:15: src/libflow.c: In function 'dbuf_get_buf': src/libutils.h:32:28: error: '_Generic' selector of type 'unsigned int' is not compatible with any association 32 | #define MIN(a, b) _Generic(1 ? (a) : (b), \ | ^ src/libflow.c:572:18: note: in expansion of macro 'MIN' 572 | *psize = MIN(*psize, dbuf->len - shift); | ^~~ make: *** [Makefile:55: build/libflow.o] Error 1 ``` --- community/f3/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/f3/APKBUILD b/community/f3/APKBUILD index 2bc3c39851a..eed7743cd8f 100644 --- a/community/f3/APKBUILD +++ b/community/f3/APKBUILD @@ -5,7 +5,8 @@ pkgver=10.0 pkgrel=0 pkgdesc="F3 - Fight Flash Fraud" url="http://oss.digirati.com.br/f3/" -arch="all" +# 32-bit arches: error with '_Generic' selector at src/libutils.h:32:28 +arch="all !armhf !armv7 !x86" license="GPL-3.0-only" options="!check" # no test provided makedepends="argp-standalone eudev-dev parted-dev linux-headers"