git: ee4cdeed9dfb - 2023Q2 - emulators/mame: set PTR64=1 on aarch64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 18 May 2023 17:55:06 UTC
The branch 2023Q2 has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=ee4cdeed9dfbe6902378be1433876027e32e244f commit ee4cdeed9dfbe6902378be1433876027e32e244f Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-05-18 14:10:44 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-05-18 17:54:34 +0000 emulators/mame: set PTR64=1 on aarch64 This seems to be required to build on aarch64 as per maintainer. Reported by: agh@riseup.net (via email) Approved by: agh@riseup.net (maintainer) MFH: 2023Q2 (cherry picked from commit d52e96a42a2c9cdec297556a3af047bcfd9e12ee) --- emulators/mame/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile index 6f306cf95dbc..c1977adb4432 100644 --- a/emulators/mame/Makefile +++ b/emulators/mame/Makefile @@ -1,5 +1,6 @@ PORTNAME?= mame PORTVERSION= 0.250 +PORTREVISION= 1 CATEGORIES= emulators games MAINTAINER= agh@riseup.net @@ -85,7 +86,7 @@ MAKE_ENV+= DEBUG="1" \ LDFLAGS+= -s .endif -.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*} +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH:Mpowerpc64*} MAKE_ARGS+= PTR64=1 .endif