aboutsummaryrefslogtreecommitdiffstats
path: root/biology/fasttree/files/patch-FastTree-2.1.10.c
diff options
context:
space:
mode:
authorJason W. Bacon <jwb@FreeBSD.org>2017-12-05 03:03:38 +0000
committerJason W. Bacon <jwb@FreeBSD.org>2017-12-05 03:03:38 +0000
commit578a3edd2c098c561c9cd788bfcba4f8996c2310 (patch)
treed8799b7e4d4ce91096f6828b8eac5f6d05d2fa87 /biology/fasttree/files/patch-FastTree-2.1.10.c
parente1cf50b763e2ae4d5f22f93c6b55de4dc7b29465 (diff)
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);