diff options
author | maho <maho@FreeBSD.org> | 2007-01-10 06:58:12 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2007-01-10 06:58:12 +0800 |
commit | f9de403cbc245c4e0fe344778268ca8798de44d3 (patch) | |
tree | 2710e7d832521a47dddee87a65040d62f6923089 /math | |
parent | 8beab6bfc7ed558f1a4ad875ccc85a80bfd2c462 (diff) | |
download | freebsd-ports-gnome-f9de403cbc245c4e0fe344778268ca8798de44d3.tar.gz freebsd-ports-gnome-f9de403cbc245c4e0fe344778268ca8798de44d3.tar.zst freebsd-ports-gnome-f9de403cbc245c4e0fe344778268ca8798de44d3.zip |
*Use gfortran compiled atlas
Diffstat (limited to 'math')
-rw-r--r-- | math/suitesparse/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/suitesparse/Makefile b/math/suitesparse/Makefile index 822b7f9ae541..5a22cc2dfd72 100644 --- a/math/suitesparse/Makefile +++ b/math/suitesparse/Makefile @@ -22,14 +22,14 @@ BUILD_DEPENDS= metis:${PORTSDIR}/math/metis WITH_ATLAS= yes .endif .if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas.1:${PORTSDIR}/math/atlas -BLAS= -L${LOCALBASE}/lib -lf77blas -latlas -LAPACK= -L${LOCALBASE}/lib -lalapack +LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas +BLAS= -L${LOCALBASE}/lib -lf77blas -latlas +LAPACK= -L${LOCALBASE}/lib -lalapack .else LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack -BLAS= -L${LOCALBASE}/lib -lblas -LAPACK= -L${LOCALBASE}/lib -llapack +BLAS= -L${LOCALBASE}/lib -lblas +LAPACK= -L${LOCALBASE}/lib -llapack .endif CONFLICTS= elmer-umfpack-4* |