Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2024 16:55:51 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 2e320ea4bc9e - main - math/kamis: Broken where OpenMP isn't available
Message-ID:  <202405201655.44KGtpYt084600@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2e320ea4bc9e19b782f728680e9560642f5bca09

commit 2e320ea4bc9e19b782f728680e9560642f5bca09
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-05-20 15:22:04 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-05-20 16:55:48 +0000

    math/kamis: Broken where OpenMP isn't available
    
    Reported by:    fallout
---
 math/kamis/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/math/kamis/Makefile b/math/kamis/Makefile
index 3e12d34d0b9a..d33923150cca 100644
--- a/math/kamis/Makefile
+++ b/math/kamis/Makefile
@@ -15,9 +15,9 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 USES=		cmake
 USE_LDCONFIG=	yes
 
-#.if !exists(/usr/include/omp.h)
-#USES+=		compiler:gcc-c++11-lib
-#.endif
+.if !exists(/usr/include/omp.h)
+BROKEN=		requires OpenMP support that is missing on this architecture
+.endif
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	KarlsruheMIS



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405201655.44KGtpYt084600>