git: 55c04d6535b6 - main - multimedia/vvenc: unbreak on armv7, powerpc, i386 - builds fine
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 29 Jan 2025 16:58:28 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=55c04d6535b6b030455d93f2fdaef8becd2bc2d4
commit 55c04d6535b6b030455d93f2fdaef8becd2bc2d4
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2025-01-29 05:45:53 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2025-01-29 16:57:15 +0000
multimedia/vvenc: unbreak on armv7, powerpc, i386 - builds fine
armv7 needs -Wno-error:
/wrkdirs/usr/ports/multimedia/vvenc/work/vvenc-1.13.0/source/Lib/CommonLib/arm/neon/InterpolationFilter_neon.cpp:708:9: error: unused variable 'src8tOff' [-Werror,-Wunused-variable]
708 | int src8tOff = cStride;
| ^~~~~~~~
1 error generated.
---
multimedia/vvenc/Makefile | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/multimedia/vvenc/Makefile b/multimedia/vvenc/Makefile
index 628b756c2552..8646ba35fe20 100644
--- a/multimedia/vvenc/Makefile
+++ b/multimedia/vvenc/Makefile
@@ -11,16 +11,13 @@ WWW= https://www.hhi.fraunhofer.de/en/departments/vca/technologies-and-solution
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-BROKEN_armv7= compilation fails: error: unused variable 'src8tOff', see https://github.com/fraunhoferhhi/vvenc/issues/496
-BROKEN_i386= compilation fails: error: use of undeclared identifier 'read_x86_extension_flags'
-BROKEN_powerpc= compilation fails: error: use of undeclared identifier 'read_x86_extension_flags'
-
USES= cmake:testing compiler:c++14-lang
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= fraunhoferhhi
+CMAKE_OFF= VVENC_ENABLE_WERROR
CMAKE_ON= BUILD_SHARED_LIBS
.include <bsd.port.options.mk>