# HG changeset patch # User John W. Eaton # Date 1375810849 14400 # Node ID 21a6b1257dd839e68e5c68ef8ddde7c77429f8f5 # Parent 863a239f0685faadce0692752d0e8d9eaea7c994 make --disable-jit and --disable-shared work diff -r 863a239f0685 -r 21a6b1257dd8 configure.ac --- a/configure.ac Tue Aug 06 13:32:02 2013 -0400 +++ b/configure.ac Tue Aug 06 13:40:49 2013 -0400 @@ -65,7 +65,7 @@ BUILD_SHARED=yes AC_ARG_ENABLE(shared, [AS_HELP_STRING([--disable-shared], [Disable shared libraries])], - [], [if test "$enableval" = no; then BUILD_SHARED=no; fi]) + [if test "$enableval" = no; then BUILD_SHARED=no; fi], []) AC_SUBST(BUILD_SHARED) BUILD_STATIC=no @@ -76,9 +76,8 @@ ENABLE_JIT=yes AC_ARG_ENABLE([jit], - [AS_HELP_STRING([--enable-jit], - [(EXPERIMENTAL) enable Octave JIT compiler])], - [if test "$enableval" = yes; then ENABLE_JIT=yes; fi], []) + [AS_HELP_STRING([--disable-jit], [Disable Octave JIT compiler])], + [if test "$enableval" = no; then ENABLE_JIT=no; fi], []) AC_SUBST(ENABLE_JIT) MXE_NATIVE_BUILD=false