Date: Mon, 28 Oct 2024 12:44:25 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: 86dc7e452567 - main - games/lbreakout: fix build on 15-CURRENT Message-ID: <202410281244.49SCiPCE074466@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=86dc7e452567ed251d8d26e285dc3cefca90942e commit 86dc7e452567ed251d8d26e285dc3cefca90942e Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2024-10-26 20:24:51 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-10-28 12:42:04 +0000 games/lbreakout: fix build on 15-CURRENT Link with -lutil to get ftime(), which was moved there in 15-CURRENT. This is harmless on older FreeBSD versions. MFH: 2024Q4 --- games/lbreakout/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/lbreakout/Makefile b/games/lbreakout/Makefile index 977e2cf7a898..3caae43422a9 100644 --- a/games/lbreakout/Makefile +++ b/games/lbreakout/Makefile @@ -1,6 +1,6 @@ PORTNAME= lbreakout PORTVERSION= 010315 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= games MASTER_SITES= SF/lgames/${PORTNAME} @@ -16,7 +16,7 @@ DEPRECATED= Abandoned by upsteam, does not support large screen resolutions. Use USES= gmake sdl USE_SDL= sdl GNU_CONFIGURE= yes -LIBS+= -lcompat +LIBS+= -lcompat -lutil pre-install: ${MKDIR} ${STAGEDIR}/var/games/${PORTNAME}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410281244.49SCiPCE074466>