svn commit: r559845 - head/multimedia/obs-studio

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jan 1 16:23:16 UTC 2021


Author: pkubaj
Date: Fri Jan  1 16:23:16 2021
New Revision: 559845
URL: https://svnweb.freebsd.org/changeset/ports/559845

Log:
  multimedia/obs-studio: fix build on powerpc64le

Modified:
  head/multimedia/obs-studio/Makefile

Modified: head/multimedia/obs-studio/Makefile
==============================================================================
--- head/multimedia/obs-studio/Makefile	Fri Jan  1 16:18:22 2021	(r559844)
+++ head/multimedia/obs-studio/Makefile	Fri Jan  1 16:23:16 2021	(r559845)
@@ -37,6 +37,7 @@ LIB_DEPENDS_armv7=	libluajit-5.1.so:lang/luajit
 LIB_DEPENDS_i386=	libluajit-5.1.so:lang/luajit
 LIB_DEPENDS_powerpc=	libluajit-5.1.so:lang/luajit
 LIB_DEPENDS_powerpc64=	libluajit-5.1.so:lang/luajit-openresty
+LIB_DEPENDS_powerpc64le=	libluajit-5.1.so:lang/luajit-openresty
 
 USES=		cmake gl lua pkgconfig python:3.4+ qt:5 xorg
 USE_GITHUB=	yes
@@ -54,7 +55,7 @@ LDFLAGS+=	-fPIC # pending https://github.com/obsprojec
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == powerpc64
+.if ${ARCH:Mpowerpc64*}
 CFLAGS+=	-Wno-unused-label
 USES+=		compiler:gcc-c++11-lib
 .else


More information about the svn-ports-all mailing list