Made BLAS and LAPACK enabled by default

release/4.3a0
Richard Roberts 2010-10-23 16:10:54 +00:00
parent dd49eb3f1b
commit 02a7dd2674
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ AC_ARG_ENABLE([blas],
yes) blas=true ;; yes) blas=true ;;
no) blas=false ;; no) blas=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-blas]) ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-blas]) ;;
esac],[blas=false]) esac],[blas=true])
ak ak
AM_CONDITIONAL([USE_BLAS], test x$blas = xtrue) AM_CONDITIONAL([USE_BLAS], test x$blas = xtrue)
AM_CONDITIONAL([USE_BLAS_MACOS], [test x$blas = xtrue && test x$ISMAC = 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 ;; yes) lapack=true ;;
no) lapack=false ;; no) lapack=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-lapack]) ;; *) 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], test x$lapack = xtrue)
AM_CONDITIONAL([USE_LAPACK_MACOS], [test x$lapack = xtrue && test x$ISMAC = xtrue]) AM_CONDITIONAL([USE_LAPACK_MACOS], [test x$lapack = xtrue && test x$ISMAC = xtrue])