Explorar o código

configure.ac: disable mlr when enable-blas-lib is set to none

Nathalie Furmento %!s(int64=5) %!d(string=hai) anos
pai
achega
445e5b40ac
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      configure.ac

+ 3 - 0
configure.ac

@@ -3021,6 +3021,9 @@ if test x$enable_simgrid = xyes ; then
 else
 	default_enable_mlr=yes
 fi
+if test x$blas_lib = xnone ; then
+	default_enable_mlr=no
+fi
 AC_ARG_ENABLE(mlr, [AS_HELP_STRING([--disable-mlr],
 			[Disable multiple linear regression models])],
 			enable_mlr=$enableval, enable_mlr=$default_enable_mlr)