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
```
This commit is contained in:
mio 2026-05-05 00:32:00 +00:00
parent 580d263d96
commit 898e1177e4

View File

@ -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"