Skip to content
Snippets Groups Projects
Commit c747001a authored by Oliver Sander's avatar Oliver Sander
Browse files

patch 5471 ('add -lblas if vendor blas is missing') merged from the trunk

[[Imported from SVN: r5484]]
parent 607ce7ed
Branches
Tags
No related merge requests found
......@@ -113,7 +113,13 @@ AC_DEFUN([DUNE_PATH_SUPERLU],[
OLDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS -L$SUPERLU_LIB_PATH"
LIBS="$BLAS_LIBS $LIBS $FLIBS"
# if no blas was found, we assume that superlu was compiled with
# internal blas
if test "x$BLAS_LIBS" = "x"; then
LIBS="$BLAS_LIBS $LIBS $FLIBS"
else
LIBS="-lblas $LIBS $FLIBS"
fi
HAVE_SUPERLU=0
if test x$with_superlu_lib = x; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment