git: 1e0ea4cadc5c - main - net/pkt-gen: Disable build on 32bit platforms
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 02 Apr 2023 12:48:24 UTC
The branch main has been updated by olivier: URL: https://cgit.FreeBSD.org/ports/commit/?id=1e0ea4cadc5c4dbc92caf7a9834275e7470f07e1 commit 1e0ea4cadc5c4dbc92caf7a9834275e7470f07e1 Author: Olivier Cochard <olivier@FreeBSD.org> AuthorDate: 2023-04-02 12:46:46 +0000 Commit: Olivier Cochard <olivier@FreeBSD.org> CommitDate: 2023-04-02 12:47:43 +0000 net/pkt-gen: Disable build on 32bit platforms Reported by: pkg-fallout --- net/pkt-gen/Makefile | 3 +++ 1 file changed, 3 insertions(+) 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