[Bug 280764] emulators/86Box: add support for aarch64 and improvements to configuration file
Date: Mon, 12 Aug 2024 01:51:32 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280764 Vladimir Druzenko <vvd@FreeBSD.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|ports-bugs@FreeBSD.org |vvd@FreeBSD.org --- Comment #2 from Vladimir Druzenko <vvd@FreeBSD.org> --- Don't add anything after .include <bsd.port.mk> Use this: .include <bsd.port.pre.mk> .if ${ARCH} == "aarch64" CMAKE_ON+= NEW_DYNAREC .endif .include <bsd.port.post.mk> And remove .include <bsd.port.mk> But in your case better use: CMAKE_ON+= ${CMAKE_ON_${ARCH}} CMAKE_ON_aarch64= NEW_DYNAREC After ".endif" and before SUB_FILES. -- You are receiving this mail because: You are the assignee for the bug.