Skip to content

Commit

Permalink
correcting configure error message
Browse files Browse the repository at this point in the history
libblas and liblapack are necessary for all algorithms, because hey
are used in the diagonalization routines.
  • Loading branch information
Alexander Voigt committed Jan 9, 2015
1 parent c34a2f2 commit 0d659c7
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions configure
Expand Up @@ -1633,10 +1633,8 @@ check_blas_libs_using_options() {
check_library "libblas" "$blas_lib_dir" \
"$default_lib_paths"
if test "x$found_lib" = "x" ; then
message "Error: libblas must be installed"
message " to run the lattice algorithm, see http://www.netlib.org/blas"
message " You can disable the lattice algorithm with the"
message " --with-algorithms= flag"
message "Error: libblas must be installed!"
message " It can be downloaded from http://www.netlib.org/blas"
exit 1
else
local BLASLIBS_=-lblas
Expand All @@ -1655,10 +1653,8 @@ check_lapack_libs_using_options() {
check_library "liblapack" "$lapack_lib_dir" \
"$default_lib_paths"
if test "x$found_lib" = "x" ; then
message "Error: liblapack must be installed"
message " to run the lattice algorithm, see http://www.netlib.org/lapack"
message " You can disable the lattice algorithm with the"
message " --with-algorithms= flag"
message "Error: liblapack must be installed!"
message " It can be downloaded from http://www.netlib.org/lapack"
exit 1
else
local LAPACKLIBS_=-llapack
Expand Down

0 comments on commit 0d659c7

Please sign in to comment.