From 02a7dd2674a826d4af0bf1d6903381050419572b Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Sat, 23 Oct 2010 16:10:54 +0000 Subject: [PATCH] Made BLAS and LAPACK enabled by default --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 82da5887c..cb3b51dbc 100644 --- a/configure.ac +++ b/configure.ac @@ -54,7 +54,7 @@ AC_ARG_ENABLE([blas], yes) blas=true ;; no) blas=false ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-blas]) ;; - esac],[blas=false]) + esac],[blas=true]) ak AM_CONDITIONAL([USE_BLAS], test x$blas = xtrue) AM_CONDITIONAL([USE_BLAS_MACOS], [test x$blas = xtrue && test x$ISMAC = xtrue]) @@ -67,7 +67,7 @@ AC_ARG_ENABLE([lapack], yes) lapack=true ;; no) lapack=false ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-lapack]) ;; - esac],[lapack=false]) + esac],[lapack=true]) AM_CONDITIONAL([USE_LAPACK], test x$lapack = xtrue) AM_CONDITIONAL([USE_LAPACK_MACOS], [test x$lapack = xtrue && test x$ISMAC = xtrue])