diff options
author | Olivier Cochard <olivier@FreeBSD.org> | 2023-04-02 12:46:46 +0000 |
---|---|---|
committer | Olivier Cochard <olivier@FreeBSD.org> | 2023-04-02 12:47:43 +0000 |
commit | 1e0ea4cadc5c4dbc92caf7a9834275e7470f07e1 (patch) | |
tree | 906b59d6c6b159fcf6587cc147a7468dfe00fc6e | |
parent | 6dcb94c39c7c612fee732862a75e7f271300d5c9 (diff) |
net/pkt-gen: Disable build on 32bit platforms
Reported by: pkg-fallout
-rw-r--r-- | net/pkt-gen/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/pkt-gen/Makefile b/net/pkt-gen/Makefile index c5e022560ced..e02534d447e2 100644 --- a/net/pkt-gen/Makefile +++ b/net/pkt-gen/Makefile @@ -8,6 +8,9 @@ WWW= https://github.com/luigirizzo/netmap LICENSE= BSD2CLAUSE +NOT_FOR_ARCHS= armv6 armv7 i386 mips powerpc +NOT_FOR_ARCHS_REASON= build error with time_t type on 32bit platforms + USES= gmake USE_GITHUB= yes GH_ACCOUNT= luigirizzo |