changeset 18272:0ab9c475300a stable

build: Don't build JIT by default (bug #41213) * configure.ac: Don't build JIT by default. Only explicit --enable-jit will include JIT in Octave.
author Rik <rik@octave.org>
date Tue, 14 Jan 2014 09:52:03 -0800
parents 975480e1be4b
children ec975e826728
files configure.ac
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Mon Jan 13 08:10:00 2014 -0800
+++ b/configure.ac	Tue Jan 14 09:52:03 2014 -0800
@@ -790,12 +790,12 @@
 
  ### Check for the LLVM library
 
-build_jit=yes
+build_jit=no
 AC_ARG_ENABLE([jit],
   [AS_HELP_STRING([--enable-jit],
     [(EXPERIMENTAL) enable JIT compiler])],
-  [if test "$enableval" = no; then
-     build_jit=no
+  [if test "$enableval" = yes; then
+     build_jit=yes
    fi],
   [])