diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-02-17 17:11:07 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-02-17 17:11:07 +0000 |
commit | 7f513be73b3c5aca3544313164554f95f42fbaff (patch) | |
tree | ca5b855786e0dd8ba0b237b0e5208a54d531845f /math | |
parent | 337acc10a7115cb6037c0be51bd77512fc4449af (diff) | |
download | pkgsrc-7f513be73b3c5aca3544313164554f95f42fbaff.tar.gz |
Pass --disable-openmp on Darwin. With changes to g95 and tk, this package
finally builds.
Diffstat (limited to 'math')
-rw-r--r-- | math/R/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 5575fcbcc24..2a0caeb933e 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.144 2014/02/06 10:57:21 markd Exp $ +# $NetBSD: Makefile,v 1.145 2014/02/17 17:11:07 jperkin Exp $ DISTNAME= R-3.0.2 CATEGORIES= math @@ -79,6 +79,10 @@ SHAREMODE= 644 .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +CONFIGURE_ARGS+= --disable-openmp +.endif + # R_PAPERSIZE can be: A4, Letter, Legal, Executive .if defined(PAPERSIZE) R_PAPERSIZE?= ${PAPERSIZE} |