From 4361f7c2e1c6c8af2b17d056074ec3de4296f22a Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 24 Mar 2004 08:39:35 +0000 Subject: [PATCH] Added a configure error message in the event that libgsl is not installed --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 29bf0f7d..98db30c3 100644 --- a/configure.ac +++ b/configure.ac @@ -24,8 +24,9 @@ AC_CHECK_LIB(gmp, mpf_get_str,, AC_MSG_ERROR([You must install libgmp]) ) ) -AC_CHECK_LIB(gslcblas,main) -AC_CHECK_LIB(gsl,main) + +AC_CHECK_LIB(gslcblas,main,,AC_MSG_ERROR([You must install libgslcblas])) +AC_CHECK_LIB(gsl,gsl_set_error_handler,,AC_MSG_ERROR([You must install libgsl])) AC_CHECK_FUNC(getopt_long,, AC_MSG_ERROR(`This application depends upon getopt_long')) -- 2.30.2