Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Oct 2024 12:46:54 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 5597e88e6ece - 2024Q4 - games/tsito: fix build on 15-CURRENT
Message-ID:  <202410281246.49SCksGI076597@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2024Q4 has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5597e88e6ece5e2d3c5972ded31984b19b28cc63

commit 5597e88e6ece5e2d3c5972ded31984b19b28cc63
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:46:15 +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
    (cherry picked from commit ebd45fe2193650b4944b5e0c6e153c56352d7a8b)
---
 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?202410281246.49SCksGI076597>