aboutsummaryrefslogtreecommitdiff
path: root/biology
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-15 08:41:19 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-15 08:41:19 +0000
commit5240cba2437ed1f3f59eab2052420b13a448b621 (patch)
tree014fba1113aa07ae7dac55102b1645ad270b4ef1 /biology
parentfd7e6665b40e9df0077f091e60b279bbfbac8482 (diff)
downloadports-5240cba2437ed1f3f59eab2052420b13a448b621.tar.gz
ports-5240cba2437ed1f3f59eab2052420b13a448b621.zip
biology/fasttree: fix build on armv7
Same issue as with powerpc.
Diffstat (limited to 'biology')
-rw-r--r--biology/fasttree/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/biology/fasttree/Makefile b/biology/fasttree/Makefile
index 304ee4959939..5df2af1cf9a1 100644
--- a/biology/fasttree/Makefile
+++ b/biology/fasttree/Makefile
@@ -11,14 +11,13 @@ 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
-BROKEN_armv7= 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} == powerpc
+.if ${ARCH} == armv7 || ${ARCH} == powerpc
USES= compiler:gcc-c++11-lib
.endif