diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-12-09 02:39:24 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-12-09 02:39:24 +0000 |
commit | 6a21f85f736c9ce739a38283e92be260ef8a94c1 (patch) | |
tree | 278e0b3ea10f069e9d379a62cbb3a290b5f818f8 | |
parent | 99dcac5819bf0ce5638b92755b80778b7d7a5724 (diff) |
security/openfhe: Broken on systems where OpenMP isn't enabled
Reported by: fallout
-rw-r--r-- | security/openfhe/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/openfhe/Makefile b/security/openfhe/Makefile index ed9db7abf880..bf41b1567955 100644 --- a/security/openfhe/Makefile +++ b/security/openfhe/Makefile @@ -12,6 +12,9 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_i386= compilation fails: error: __int128 is not supported on this target +.if !exists(/usr/include/omp.h) +BROKEN= requires OpenMP support that is missing on this architecture +.endif BUILD_DEPENDS= autoconf:devel/autoconf # possibly a mistake in the project |