From: kanschat Date: Tue, 4 Sep 2007 16:01:15 +0000 (+0000) Subject: configure even without --without-blas X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9104ad0731e818ddadcfc6dca9ac27ec5d61a9a;p=dealii-svn.git configure even without --without-blas git-svn-id: https://svn.dealii.org/trunk@15116 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure b/deal.II/configure index 77e732dc7f..0b1b82887e 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 15082 . +# From configure.in Revision: 15114 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for deal.II 6.0.pre. # @@ -12131,7 +12131,7 @@ fi fi; -if test "x$with_ blas" != "x" -a "x$with_blas" != "xno" ; then +if test "x$with_blas" != "x" -a "x$with_blas" != "xno" ; then echo "$as_me:$LINENO: checking for daxpy_" >&5 echo $ECHO_N "checking for daxpy_... $ECHO_C" >&6 if test "${ac_cv_func_daxpy_+set}" = set; then @@ -12225,8 +12225,8 @@ echo "${ECHO_T}$ac_cv_func_daxpy_" >&6 if test $ac_cv_func_daxpy_ = yes; then : else - { { echo "$as_me:$LINENO: error: BLAS library not installed correctly" >&5 -echo "$as_me: error: BLAS library not installed correctly" >&2;} + { { echo "$as_me:$LINENO: error: BLAS library not installed correctly($with_blas)" >&5 +echo "$as_me: error: BLAS library not installed correctly($with_blas)" >&2;} { (exit 1); exit 1; }; } fi diff --git a/deal.II/configure.in b/deal.II/configure.in index 18cd1f0af4..d6ec3bd5be 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -528,8 +528,8 @@ AC_ARG_WITH(lapack, dnl Finally check if BLAS is really there. We have to do it this way, since dnl MAC OSX links BLAS functions in a different way -if test "x$with_ blas" != "x" -a "x$with_blas" != "xno" ; then - AC_CHECK_FUNC(daxpy_,,[AC_MSG_ERROR([BLAS library not installed correctly])]) +if test "x$with_blas" != "x" -a "x$with_blas" != "xno" ; then + AC_CHECK_FUNC(daxpy_,,[AC_MSG_ERROR([BLAS library not installed correctly($with_blas)])]) fi AC_CHECK_FUNCS([dgemv_ sgemv_ dgeev_ sgeev_ dgeevx_ sgeevx_ dgesvd_ sgesvd_])