diff options
author | Dima Panov <fluffy@FreeBSD.org> | 2021-11-19 22:22:38 +0000 |
---|---|---|
committer | Dima Panov <fluffy@FreeBSD.org> | 2021-11-19 22:22:38 +0000 |
commit | fe7520295b0dc95f870215a23a6164ec842eda70 (patch) | |
tree | f132c2205f9304a317548753000e7638d7f89aa9 | |
parent | e52bcc38a54bc400d8c8e6f7e36d9dd4787f5225 (diff) | |
download | ports-fe7520295b0dc95f870215a23a6164ec842eda70.tar.gz ports-fe7520295b0dc95f870215a23a6164ec842eda70.zip |
multimedia/mpv: fix build with LUAJIT=OFF (+)
Limit allowed Lua versions to 5.1/5.2, MPV cannot use lua53+ yet
Approved by: portmgr blanket (trivial fix build)
Sponsored by: Netzkommune GmbH
-rw-r--r-- | multimedia/mpv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/mpv/Makefile b/multimedia/mpv/Makefile index 7ebed2a3c30a..b473c8f1062b 100644 --- a/multimedia/mpv/Makefile +++ b/multimedia/mpv/Makefile @@ -96,7 +96,7 @@ LIBBLURAY_CONFIGURE_ON= --enable-libbluray LIBBLURAY_CONFIGURE_OFF= --disable-libbluray LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit -LUAJIT_USES_OFF= lua +LUAJIT_USES_OFF= lua:51-52 LUAJIT_CONFIGURE_ON= --lua=luajit LUAJIT_CONFIGURE_OFF= --lua=${LUA_VER_STR}fbsd |