git: ed8cbc2f7de4 - main - multimedia/vvdec: enable on riscv64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 16 Feb 2022 13:36:16 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=ed8cbc2f7de453d7ef9b61b1888f18debece4a89
commit ed8cbc2f7de453d7ef9b61b1888f18debece4a89
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-02-16 13:33:05 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-02-16 13:33:05 +0000
multimedia/vvdec: enable on riscv64
---
multimedia/vvdec/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/multimedia/vvdec/Makefile b/multimedia/vvdec/Makefile
index da7fc952c0bb..1af3345d32bf 100644
--- a/multimedia/vvdec/Makefile
+++ b/multimedia/vvdec/Makefile
@@ -9,7 +9,7 @@ COMMENT= Versatile Video Coding (VVC) decoder
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-ONLY_FOR_ARCHS= amd64 powerpc powerpc64 powerpc64le
+ONLY_FOR_ARCHS= amd64 powerpc powerpc64 powerpc64le riscv64
USES= cmake compiler:c++14-lang
USE_LDCONFIG= yes
@@ -22,7 +22,7 @@ CMAKE_OFF= FREEBSD_VVDEC_ENABLE_X86_SIMD
.include <bsd.port.options.mk>
-.if ${ARCH} == powerpc64
+.if ${ARCH} == powerpc64 || ${ARCH} == riscv64
CMAKE_ARGS+= -DVVDEC_ENABLE_LINK_TIME_OPT:BOOL=OFF
.endif