git: b487ce32b848 - main - games/solarus: enable LUAJIT on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 23 Oct 2021 00:39:20 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=b487ce32b84879e89ee1de099a5ebece4542c003 commit b487ce32b84879e89ee1de099a5ebece4542c003 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2021-10-23 00:36:46 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2021-10-23 00:36:46 +0000 games/solarus: enable LUAJIT on powerpc64le --- games/solarus/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/games/solarus/Makefile b/games/solarus/Makefile index a7c95dce10dc..b8e9c2ae10d8 100644 --- a/games/solarus/Makefile +++ b/games/solarus/Makefile @@ -34,6 +34,7 @@ OPTIONS_DEFAULT_amd64= LUAJIT OPTIONS_DEFAULT_i386= LUAJIT OPTIONS_DEFAULT_powerpc= LUAJIT OPTIONS_DEFAULT_powerpc64= LUAJIT +OPTIONS_DEFAULT_powerpc64le= LUAJIT LUAJIT_CMAKE_BOOL= SOLARUS_USE_LUAJIT LUAJIT_DESC= Use LuaJIT instead of standard Lua @@ -44,7 +45,7 @@ CMAKE_ARGS+= -DSOLARUS_MANUAL_INSTALL_DESTINATION:STRING="man" .include <bsd.port.options.mk> -.if ${ARCH} == powerpc64 +.if ${ARCH:Mpowerpc64*} LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit-openresty .endif