From: hartmann Date: Tue, 11 Jul 2006 12:19:59 +0000 (+0000) Subject: For PETSC and static linking use default blas only if no blas lib was given to -... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81f3751e90e7d687b79e580938b323c086932804;p=dealii-svn.git For PETSC and static linking use default blas only if no blas lib was given to --with-blas= configure option. git-svn-id: https://svn.dealii.org/trunk@13353 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure b/deal.II/configure index 76cab4f55d..a95f4b0e68 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -10754,7 +10754,9 @@ fi if test "x$with_petsc" != "x" ; then if test "x$enableshared" = "xno" ; then - with_blas="yes" + if test "x$with_blas" = "x" ; then + with_blas="yes" + fi fi fi diff --git a/deal.II/configure.in b/deal.II/configure.in index bd8c9bb787..5d2ee1bfcc 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -430,7 +430,9 @@ dnl linker line (if we use shared libs, then the PETSc libs already carry this dnl dependence, but static archives do not have a method to list dependencies) if test "x$with_petsc" != "x" ; then if test "x$enableshared" = "xno" ; then - with_blas="yes" + if test "x$with_blas" = "x" ; then + with_blas="yes" + fi fi fi