Skip to content
Snippets Groups Projects
Commit ede2d290 authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Report GSL success correctly

Might be better to use a --with argument so that external builds can be located more easily in non-standard places
parent 980a2ec5
No related branches found
No related tags found
1 merge request!509Cosmological time integration
......@@ -411,6 +411,9 @@ AC_CHECK_LIB(m,sqrt,,AC_MSG_ERROR(something is wrong with the math library!))
have_gsl="no"
AC_CHECK_LIB([gslcblas], [cblas_dgemm])
AC_CHECK_LIB([gsl], [gsl_integration_qag])
if test "x$ac_cv_lib_gslcblas_cblas_dgemm" != "x"; then
have_gsl="yes"
fi
# Check for pthreads.
AX_PTHREAD([LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment