diff options
author | thierry <thierry@FreeBSD.org> | 2006-02-26 17:01:06 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-02-26 17:01:06 +0800 |
commit | eeaa8b4b659495ec08171adf92b084db254a6a21 (patch) | |
tree | 268273432525cb33c38da8fc6ab949379bb5e02a /math/petsc | |
parent | e1599f44e4447bf7729ba536efcfc816f8b169b7 (diff) | |
download | freebsd-ports-gnome-eeaa8b4b659495ec08171adf92b084db254a6a21.tar.gz freebsd-ports-gnome-eeaa8b4b659495ec08171adf92b084db254a6a21.tar.zst freebsd-ports-gnome-eeaa8b4b659495ec08171adf92b084db254a6a21.zip |
Unbreak math/petsc-mpich on amd64 by disabling SuperLU.
Reported by: pointyhat via Kris
Approved by: portmgr (marcus)
Diffstat (limited to 'math/petsc')
-rw-r--r-- | math/petsc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/math/petsc/Makefile b/math/petsc/Makefile index 0a12aae1af15..548cdc349ec6 100644 --- a/math/petsc/Makefile +++ b/math/petsc/Makefile @@ -71,6 +71,10 @@ MPIDIR= ${LOCALBASE}/mpich .include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" +WITHOUT_SUPERLU= yes +.endif + .if exists(${MPIDIR}/bin/mpiCC) && !defined(WITHOUT_MPI) WITH_MPI= yes .endif |