2008-09-11 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Thu, 11 Sep 2008 01:49:17 +0000 (01:49 -0000)
committerZoltan Varga <vargaz@gmail.com>
Thu, 11 Sep 2008 01:49:17 +0000 (01:49 -0000)
* configure.in: Add a DISABLE_JIT automake conditional too.

svn path=/trunk/mono/; revision=112725

ChangeLog
configure.in

index 4e200db80732d9623fbf99b958a3b450ed28fcac..53cdac8ee2836a6d951abf3ba856bef523573f56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2008-09-11  Zoltan Varga  <vargaz@gmail.com>
 
+       * configure.in: Add a DISABLE_JIT automake conditional too.
+
        * configure.in: Add a --enable-minimal=jit option to disable jit, only
        allowing full-aot execution.
 
index 5db2d811fe055b8181984e09dc4e5b21dccf5348..0e8ddd5f521d66b5caa83d38574937b59219a3df 100644 (file)
@@ -597,6 +597,8 @@ if test "x$mono_feature_disable_jit" = "xyes"; then
        AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode will be supported by the runtime.])
 fi
 
+AM_CONDITIONAL(DISABLE_JIT, test x$mono_feature_disable_jit = xyes)
+
 AC_MSG_CHECKING(for visibility __attribute__)
 AC_TRY_COMPILE([], [
    void __attribute__ ((visibility ("hidden"))) doit (void) {}