From 45c55b09ce573bcc8b4c47e1239461426dab10c1 Mon Sep 17 00:00:00 2001 From: Francesco Lannutti Date: Wed, 2 Nov 2016 16:57:09 +0100 Subject: [PATCH] Added checks for GSL library in configure.ac --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index de5ba22ad..aabbb6c6e 100644 --- a/configure.ac +++ b/configure.ac @@ -852,6 +852,9 @@ if test "x$enable_pss" = xyes; then AC_MSG_RESULT([WARNING: PSS analysis enabled]) fi if test "x$enable_relan" = xyes; then + AC_MSG_RESULT([checking for GSL library, since Reliability Analysis has been requested]) + AC_CHECK_LIB([gslcblas], [cblas_dgemm], [], [AC_MSG_ERROR([GSL Library not found, please install it])]) + AC_CHECK_LIB([gsl], [gsl_blas_dgemm], [], [AC_MSG_ERROR([GSL Library not found, please install it])]) AC_DEFINE([RELAN], [], [Define if you want Reliability Analysis]) AC_MSG_RESULT([WARNING: Reliability Analysis enabled]) fi