diff options
author | jmc <jmc@pkgsrc.org> | 2003-03-11 02:30:24 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-03-11 02:30:24 +0000 |
commit | b1abe34ac97422214bfc66bd4e7ddcbda12f0b54 (patch) | |
tree | af766e1a1e3b9d5ff4e879877f8b06442e516895 /math | |
parent | 17d08ef9598336db0ccf315b0458b031c451a8ff (diff) | |
download | pkgsrc-b1abe34ac97422214bfc66bd4e7ddcbda12f0b54.tar.gz |
Make this relay on blas 1.0nb1 and use libblas_pic.a instead of libblas.a so
proper PIC objects get pulled into the .so's
Diffstat (limited to 'math')
-rw-r--r-- | math/R/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 74064bb28c5..25ad099ab10 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2003/01/23 21:24:58 markd Exp $ +# $NetBSD: Makefile,v 1.43 2003/03/11 02:30:24 jmc Exp $ DISTNAME= R-1.6.2 CATEGORIES= math @@ -32,7 +32,7 @@ CONFIGURE_ENV+= XMKMF="${XMKMF}" # Use BLAS (math/blas) # CONFIGURE_ARGS+= --without-atlas -CONFIGURE_ARGS+= --with-blas=${BUILDLINK_PREFIX.blas}/lib/libblas.a +CONFIGURE_ARGS+= --with-blas=${BUILDLINK_PREFIX.blas}/lib/libblas_pic.a CONFIGURE_ARGS+= --without-blas_risc CONFIGURE_ARGS+= --without-dxml CONFIGURE_ARGS+= --without-libmoto @@ -46,6 +46,9 @@ CONFIGURE_ENV+= ac_cv_lib_blas_dgemm_=yes # USE_FORTRAN= # defined +# Specifically require at least this version since it includes libblas_pic.a +BUILDLINK_DEPENDS.blas= blas>=1.0nb1 + .include "../../mk/bsd.prefs.mk" # R_PAPERSIZE can be: A4, Letter, Legal, Executive |