diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-12-04 03:28:19 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-12-04 06:48:23 +0000 |
commit | b41577a705c45eeab937a34fe4a0f97d1b2d9e12 (patch) | |
tree | df7279dddef8c915cb3fa80c8d63c8718b59f116 | |
parent | 008217de2ee776d2d6ba14b7cc6918702d8ef074 (diff) | |
download | ports-b41577a705c45eeab937a34fe4a0f97d1b2d9e12.tar.gz ports-b41577a705c45eeab937a34fe4a0f97d1b2d9e12.zip |
security/openfhe: Add the OPENMP option enabled only where OpenMP is enabled
Reported by: fallout
-rw-r--r-- | security/openfhe/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/security/openfhe/Makefile b/security/openfhe/Makefile index f478a54f7a7b..98069d7ed9f0 100644 --- a/security/openfhe/Makefile +++ b/security/openfhe/Makefile @@ -1,7 +1,7 @@ PORTNAME= openfhe DISTVERSIONPREFIX= v DISTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security math MAINTAINER= yuri@FreeBSD.org @@ -30,7 +30,7 @@ CMAKE_TESTING_TARGET= testall BINARY_ALIAS= git=false -OPTIONS_DEFINE= HEXL NTL +OPTIONS_DEFINE= HEXL NTL OPENMP OPTIONS_DEFAULT= NTL HEXL_DESC= Buld with Intel hexl @@ -42,4 +42,11 @@ NTL_CMAKE_BOOL= WITH_NTL NTL_LIB_DEPENDS= libgmp.so:math/gmp \ libntl.so:math/ntl +OPENMP_CMAKE_BOOL= WITH_OPENMP +.if exists(/usr/include/omp.h) +OPTIONS_DEFAULT+= OPENMP +.else +OPENMP_BROKEN= OpenMP isn't enabled on this architecture +.endif + .include <bsd.port.mk> |