git: b84ec0d0bde6 - 2022Q3 - math/dbcsr: Broken on systems where OpenMP isn't enabled
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Jul 2022 02:02:53 UTC
The branch 2022Q3 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=b84ec0d0bde607cf740a05ecf7821621623ac963 commit b84ec0d0bde607cf740a05ecf7821621623ac963 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-07-25 02:01:34 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-07-25 02:02:47 +0000 math/dbcsr: Broken on systems where OpenMP isn't enabled Reported by: fallout (cherry picked from commit d18cac5da57cb43450eac29de673ff228e65791a) --- math/dbcsr/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/math/dbcsr/Makefile b/math/dbcsr/Makefile index f9756a7e7ab6..75a9d692ad40 100644 --- a/math/dbcsr/Makefile +++ b/math/dbcsr/Makefile @@ -9,6 +9,10 @@ COMMENT= Distributed Block Compressed Sparse Row matrix library LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +.if !exists(/usr/include/omp.h) +BROKEN= requires OpenMP support that is missing on this architecture +.endif + BUILD_DEPENDS= fypp:devel/py-fypp@${PY_FLAVOR} USES= blaslapack:openblas cmake:noninja compiler:c++14-lang fortran \