Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 May 2023 17:52:47 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: d52e96a42a2c - main - emulators/mame: set PTR64=1 on aarch64
Message-ID:  <202305181752.34IHqlRX000666@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=d52e96a42a2c9cdec297556a3af047bcfd9e12ee

commit d52e96a42a2c9cdec297556a3af047bcfd9e12ee
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:52:14 +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
---
 emulators/mame/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile
index 38347752f3f6..26b2e16f7030 100644
--- a/emulators/mame/Makefile
+++ b/emulators/mame/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	mame
 PORTVERSION=	0.254
+PORTREVISION=	1
 CATEGORIES=	emulators games
 
 MAINTAINER=	agh@riseup.net
@@ -89,7 +90,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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305181752.34IHqlRX000666>