# HG changeset patch # User John W. Eaton # Date 1392591195 18000 # Node ID 8a4a11234ccf1418035b282f5a93bc78f360bed4 # Parent 1b350761007fb5e6bf96515c83827b5ccc0b6dff disable jit compiler by default diff -r 1b350761007f -r 8a4a11234ccf configure.ac --- a/configure.ac Sun Feb 16 17:49:33 2014 -0500 +++ b/configure.ac Sun Feb 16 17:53:15 2014 -0500 @@ -74,10 +74,10 @@ [if test "$enableval" = yes; then BUILD_STATIC=yes; fi], []) AC_SUBST(BUILD_STATIC) -ENABLE_JIT=yes +ENABLE_JIT=no AC_ARG_ENABLE([jit], - [AS_HELP_STRING([--disable-jit], [Disable Octave JIT compiler])], - [if test "$enableval" = no; then ENABLE_JIT=no; fi], []) + [AS_HELP_STRING([--enable-jit], [Enable Octave JIT compiler])], + [if test "$enableval" = yes; then ENABLE_JIT=yes; fi], []) AC_SUBST(ENABLE_JIT) ENABLE_JAVA=yes