aboutsummaryrefslogtreecommitdiffstats
path: root/biology/fasttree/files/patch-FastTree-2.1.10.c
diff options
context:
space:
mode:
authorjwb <jwb@FreeBSD.org>2017-12-05 11:03:38 +0800
committerjwb <jwb@FreeBSD.org>2017-12-05 11:03:38 +0800
commite93bc25cce78f8deb0ddc424947adf9caecaef8c (patch)
treed8799b7e4d4ce91096f6828b8eac5f6d05d2fa87 /biology/fasttree/files/patch-FastTree-2.1.10.c
parent38ae6022d36e932182d349343c125df4a55c9f4d (diff)
downloadfreebsd-ports-gnome-e93bc25cce78f8deb0ddc424947adf9caecaef8c.tar.gz
freebsd-ports-gnome-e93bc25cce78f8deb0ddc424947adf9caecaef8c.tar.zst
freebsd-ports-gnome-e93bc25cce78f8deb0ddc424947adf9caecaef8c.zip
biology/fasttree: update to version 2.1.10
Approved by: jrm Differential Revision: https://reviews.freebsd.org/D8187
Diffstat (limited to 'biology/fasttree/files/patch-FastTree-2.1.10.c')
-rw-r--r--biology/fasttree/files/patch-FastTree-2.1.10.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/biology/fasttree/files/patch-FastTree-2.1.10.c b/biology/fasttree/files/patch-FastTree-2.1.10.c
new file mode 100644
index 000000000000..36dd31ceb877
--- /dev/null
+++ b/biology/fasttree/files/patch-FastTree-2.1.10.c
@@ -0,0 +1,11 @@
+--- FastTree-2.1.10.c.orig 2017-12-04 15:09:11 UTC
++++ FastTree-2.1.10.c
+@@ -8759,7 +8759,7 @@ double pnorm(double x)
+
+ void *mymalloc(size_t sz) {
+ if (sz == 0) return(NULL);
+- void *new = malloc(sz);
++ void *new = aligned_alloc(16, sz);
+ if (new == NULL) {
+ fprintf(stderr, "Out of memory\n");
+ exit(1);