diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2023-05-18 16:10:44 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-05-18 19:52:14 +0200 |
commit | d52e96a42a2c9cdec297556a3af047bcfd9e12ee (patch) | |
tree | 4c30c4396c9d928226e458b60a25db3f538c4967 /emulators | |
parent | 3335c454184dd257a4bdbf47256461014f5388f8 (diff) | |
download | freebsd-ports-d52e96a42a2c9cdec297556a3af047bcfd9e12ee.zip |
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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/mame/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |