From bae590e222da53707df016285d23c5a9081910ff Mon Sep 17 00:00:00 2001
From: Zero King <l2dy@macports.org>
Date: Sun, 12 Mar 2017 10:13:22 +0000
Subject: [PATCH] R: fix build on OS X 10.8 and below
---
math/R/Portfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/math/R/Portfile b/math/R/Portfile
index 35aedd85ac..feaffa495a 100644
a
|
b
|
configure.args --enable-R-framework \ |
83 | 83 | --without-x \ |
84 | 84 | --with-included-gettext |
85 | 85 | |
86 | | if {${os.major} < 13} { |
| 86 | if {${os.platform} eq "darwin" && ${os.major} < 13} { |
| 87 | depends_lib-append port:curl |
87 | 88 | configure.args-append --disable-openmp |
88 | 89 | } |
89 | 90 | |