diff options
author | Brendan Fabeny <bf@FreeBSD.org> | 2011-11-22 11:14:10 +0000 |
---|---|---|
committer | Brendan Fabeny <bf@FreeBSD.org> | 2011-11-22 11:14:10 +0000 |
commit | 004a7c5ac21475f760354371ae4f8fca5e556acb (patch) | |
tree | 47b9539be8bb171263921a641d850025fee218cc /math/lapack95 | |
parent | bcfacab8772c0f3bf72412386eb13f58def6bef2 (diff) |
adjust linking and comments in dependent ports after the math/atlas update;
math/atlas-devel will be updated to use the same constructs at a later date
PR: 162706
Approved by: miwi (portmgr)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=286242
Diffstat (limited to 'math/lapack95')
-rw-r--r-- | math/lapack95/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/lapack95/Makefile b/math/lapack95/Makefile index a89ba005f6d4..8adc69fef427 100644 --- a/math/lapack95/Makefile +++ b/math/lapack95/Makefile @@ -29,7 +29,7 @@ PICFLAG?= -fPIC PICFLAG?= -fpic .endif -.if exists(${LOCALBASE}/lib/libatlas_r.so) +.if exists(${LOCALBASE}/lib/libatlas.so) WITH_BLAS?= atlas .else WITH_BLAS?= reference @@ -37,7 +37,7 @@ WITH_BLAS?= reference .if ${WITH_BLAS} == atlas LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas -BLAS= -lf77blas -latlas +BLAS= -lf77blas LAPACK= -lalapack -lcblas .else LIB_DEPENDS+= blas:${PORTSDIR}/math/blas |