Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Oct 2024 12:46:50 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: 379985f7dd9d - 2024Q4 - games/lbreakout: fix build on 15-CURRENT
Message-ID:  <202410281246.49SCkoEq076449@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=379985f7dd9d3ff94262b307563fce9cb279e7b5

commit 379985f7dd9d3ff94262b307563fce9cb279e7b5
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:46:13 +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
    (cherry picked from commit 86dc7e452567ed251d8d26e285dc3cefca90942e)
---
 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?202410281246.49SCkoEq076449>