Date: Mon, 28 Oct 2024 12:44:28 GMT From: Robert Clausecker <fuz@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: ebd45fe21936 - main - games/tsito: fix build on 15-CURRENT Message-ID: <202410281244.49SCiSvb074601@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=ebd45fe2193650b4944b5e0c6e153c56352d7a8b commit ebd45fe2193650b4944b5e0c6e153c56352d7a8b Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2024-10-26 20:40:09 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-10-28 12:42:06 +0000 games/tsito: fix build on 15-CURRENT Link with -lutil to get ftime() which was moved there recently. This is harmless on older FreeBSD. MFH: 2024Q4 --- games/tsito/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/tsito/Makefile b/games/tsito/Makefile index 54c646ce7a0f..54a4967e1e85 100644 --- a/games/tsito/Makefile +++ b/games/tsito/Makefile @@ -1,6 +1,6 @@ PORTNAME= tsito PORTVERSION= 0.8.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/xiangqi-engine/xiangqi-engine/${PORTNAME}-${PORTVERSION} @@ -13,6 +13,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX=${PREFIX}/share -LIBS+= -lcompat +LIBS+= -lcompat -lutil .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410281244.49SCiSvb074601>