Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Jul 2022 01:24:57 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: 8832ed349866 - main - biology/star: Broken on systems where OpenMP isn't enabled
Message-ID:  <202207240124.26O1OvYg053343@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=8832ed34986619f044270884b9dfabfcd9f4e856

commit 8832ed34986619f044270884b9dfabfcd9f4e856
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-07-24 01:24:10 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-07-24 01:24:10 +0000

    biology/star: Broken on systems where OpenMP isn't enabled
    
    Reported by:    fallout
    Approved by:    portmgr (blanket)
---
 biology/star/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/biology/star/Makefile b/biology/star/Makefile
index 66d4ac8a4dc0..12f862562221 100644
--- a/biology/star/Makefile
+++ b/biology/star/Makefile
@@ -11,6 +11,9 @@ LICENSE_FILE=	${WRKDIR}/STAR-${DISTVERSION}/LICENSE
 
 NOT_FOR_ARCHS=	i386 powerpc
 NOT_FOR_ARCHS_REASON=Needs 16+ GiB RAM for typical eukaryotic genome
+.if !exists(/usr/include/omp.h)
+BROKEN=		requires OpenMP support that is missing on this architecture
+.endif
 
 LIB_DEPENDS=	libhts.so:biology/htslib
 



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