Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Jul 2022 10:21:05 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 4a802e3c846a - 2022Q3 - misc/urh: Broken on systems where OpenMP isn't enabled
Message-ID:  <202207241021.26OAL57g081506@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/ports/commit/?id=4a802e3c846a03c2e7cdc2b0555b35c13703bba1

commit 4a802e3c846a03c2e7cdc2b0555b35c13703bba1
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-07-24 10:20:13 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-07-24 10:21:00 +0000

    misc/urh: Broken on systems where OpenMP isn't enabled
    
    Reported by:    fallout
    
    (cherry picked from commit 9e83c182267cdca874417bf3092ca12b21c000cb)
---
 misc/urh/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/misc/urh/Makefile b/misc/urh/Makefile
index 16734bff7ab5..0636d80b3a73 100644
--- a/misc/urh/Makefile
+++ b/misc/urh/Makefile
@@ -8,6 +8,10 @@ COMMENT=	Universal Radio Hacker: investigate wireless protocols like a boss
 
 LICENSE=	GPLv3
 
+.if !exists(/usr/include/omp.h)
+BROKEN=		requires OpenMP support that is missing on this architecture
+.endif
+
 BUILD_DEPENDS=	${PYNUMPY}
 RUN_DEPENDS=	${PYNUMPY} \
 		${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \



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