Abort build process if BLAS or LAPACK not found

This commit is contained in:
Roland Kaufmann 2012-10-14 21:43:11 +02:00
parent c8a52177bf
commit 1689074d4f

View File

@ -1,4 +1,7 @@
AC_DEFUN([OPM_LAPACK], AC_DEFUN([OPM_LAPACK],
[AC_REQUIRE([AC_F77_WRAPPERS])dnl [AC_REQUIRE([AC_F77_WRAPPERS])dnl
AC_REQUIRE([AX_LAPACK])dnl AC_REQUIRE([AX_LAPACK])dnl
if test x"$ax_lapack_ok" != xyes; then
AC_MSG_ERROR([BLAS/LAPACK required, but not found.])
fi
])[]dnl ])[]dnl