git: 4741d8f70d0f - main - multimedia/vvenc: fix build on armv? / powerpc
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 13 Mar 2023 00:05:38 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=4741d8f70d0f2485b5f50032945ce08cd13d4db8
commit 4741d8f70d0f2485b5f50032945ce08cd13d4db8
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-03-13 00:02:35 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-03-13 00:02:35 +0000
multimedia/vvenc: fix build on armv? / powerpc
/wrkdirs/usr/ports/multimedia/vvenc/work/vvenc-1.7.0/source/Lib/CommonLib/x86/sse41/../BufferX86.h:1658:3: error: static_assert failed due to requirement 'sizeof (val) == 8' "Only supported for 64bit systems!"
static_assert( sizeof( val ) == 8, "Only supported for 64bit systems!" );
^ ~~~~~~~~~~~~~~~~~~
1 error generated.
---
multimedia/vvenc/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/multimedia/vvenc/Makefile b/multimedia/vvenc/Makefile
index 68c75d6bd9d7..d147159d6edf 100644
--- a/multimedia/vvenc/Makefile
+++ b/multimedia/vvenc/Makefile
@@ -18,7 +18,7 @@ CMAKE_ON= BUILD_SHARED_LIBS
.include <bsd.port.options.mk>
-.if ${ARCH} == i386
+.if ${ARCH:Marmv?} || ${ARCH} == i386 || ${ARCH} == powerpc
CMAKE_OFF+= VVENC_ENABLE_X86_SIMD
.endif