aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2022-04-27 13:22:02 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2022-04-27 13:22:02 +0000
commitcf150ef9e2f6547b609c43a05365b66d8f5f5104 (patch)
treefe12c2e62d875e0465b25d575f1739ed9f346820
parentdbdb55a5c4d571de05a0d31a2a04b04e27bd75eb (diff)
downloadports-cf150ef9e2f6547b609c43a05365b66d8f5f5104.tar.gz
ports-cf150ef9e2f6547b609c43a05365b66d8f5f5104.zip
biology/fasttree: check for omp.h on all architectures
-rw-r--r--biology/fasttree/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/biology/fasttree/Makefile b/biology/fasttree/Makefile
index 5df2af1cf9a1..c47e9dabb557 100644
--- a/biology/fasttree/Makefile
+++ b/biology/fasttree/Makefile
@@ -10,14 +10,10 @@ COMMENT= Approximately-maximum-likelihood phylogenetic trees from alignments
LICENSE= GPLv2+
-BROKEN_armv6= fails to compile: FastTree-2.1.10.c:305:10: 'omp.h' file not found
-
NO_WRKSUBDIR= yes
PLIST_FILES= bin/FastTree
-.include <bsd.port.options.mk>
-
-.if ${ARCH} == armv7 || ${ARCH} == powerpc
+.if !exists(/usr/include/omp.h)
USES= compiler:gcc-c++11-lib
.endif