Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2004-10-31 03:03:26 +0300
committerZoltan Varga <vargaz@gmail.com>2004-10-31 03:03:26 +0300
commit8d4e26e924b5afa66b744ce771bfed8357b79a22 (patch)
treeae8ea66e247073d81b42067817936cfddd0edac1 /configure.in
parent6065456a8a1c33043c1448fef325750c73ffe70b (diff)
2004-10-31 Zoltan Varga <vargaz@freemail.hu>
* configure.in: Fix up --with-jit=no so it actually works. Fixes #61320. svn path=/trunk/mono/; revision=35510
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 956b2054122..24980fc6dcb 100644
--- a/configure.in
+++ b/configure.in
@@ -1283,7 +1283,11 @@ case "$host" in
esac
AC_ARG_WITH(jit, [ --with-jit=yes,no If you want to build scripts that default to the JIT],[
- jit_wanted=true
+ if test x$withval = xyes; then
+ jit_wanted=true
+ else
+ jit_wanted=false
+ fi
])
USEJIT=false