diff options
| author | Dima Panov <fluffy@FreeBSD.org> | 2026-02-04 12:04:00 +0000 |
|---|---|---|
| committer | Dima Panov <fluffy@FreeBSD.org> | 2026-02-04 12:04:00 +0000 |
| commit | 6b6f9fc3af509d1bb21b6254e618ce1c1eb02cf7 (patch) | |
| tree | 863c14beed860d77fcb7df8c6f2de0f853726577 | |
| parent | 8fe3c1ef3bb24131f52dd641d82682d24c61004c (diff) | |
graphics/opencv: unbreak build on aarch64 (+)
Since 4.13.0, usage of KleidiCV (arm-specific acceleration library) is on by default which breaks aarch64 build.
Set it to OFF to mimics previous behavior until library will be ported to FreeBSD.
| -rw-r--r-- | graphics/opencv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index 9ce71f380341..3ef5a5c3f157 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -21,7 +21,7 @@ USE_LDCONFIG= yes CMAKE_ARGS= -DOPENCV_EXTRA_MODULES_PATH="${WRKSRC}/contrib/modules" CMAKE_ON= OPENCV_GENERATE_PKGCONFIG OPENCV_SKIP_CMAKE_CXX_STANDARD -CMAKE_OFF= BUILD_opencv_python2 BUILD_TESTS OPENCV_GENERATE_SETUPVARS +CMAKE_OFF= BUILD_opencv_python2 BUILD_TESTS OPENCV_GENERATE_SETUPVARS WITH_KLEIDICV DATADIR= ${PREFIX}/share/${PORTNAME}4 |
