changeset 3693:5037295b2e89

enable openblas by default
author John W. Eaton <jwe@octave.org>
date Fri, 22 Aug 2014 15:36:15 -0400
parents 2b4493282fc7
children 193fbb6106e0
files configure.ac
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Wed Aug 20 16:35:27 2014 -0400
+++ b/configure.ac	Fri Aug 22 15:36:15 2014 -0400
@@ -132,11 +132,11 @@
   [if test "$enableval" = no; then STRIP_DIST_FILES=no; fi], [])
 AC_SUBST(STRIP_DIST_FILES)
 
-ENABLE_OPENBLAS=no
+ENABLE_OPENBLAS=yes
 AC_ARG_ENABLE([openblas],
-  [AS_HELP_STRING([--enable-openblas],
+  [AS_HELP_STRING([--disable-openblas],
     [(EXPERIMENTAL) enable use of openblas in Octave])],
-  [if test "$enableval" = yes; then ENABLE_OPENBLAS=yes; fi], [])
+  [if test "$enableval" = no; then ENABLE_OPENBLAS=no; fi], [])
 AC_SUBST(ENABLE_OPENBLAS)
 
 ENABLE_STABLE=yes