From 27426e90d01722d6020de236f75793ec5660a428 Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 30 Mar 2017 15:53:38 -0400 Subject: [PATCH] [build] wrap CBLAS check in a check for the cblas.h header --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 92b9810c..8e8429c8 100644 --- a/configure.ac +++ b/configure.ac @@ -76,7 +76,9 @@ AS_IF([test "x$enable_sse2" != "xno"], [ CFLAGS="-mfpmath=sse -msse2 -DUSE_SSE ${CFLAGS}" ]) -AX_CBLAS() +AC_CHECK_HEADERS([cblas.h], [ + AX_CBLAS() +]) AC_ARG_ENABLE([data-download], [ --disable-data-download Disable downloading data],