configure: make --disable-jit imply --disable-futures
This commit is contained in:
parent
8291fef9de
commit
69929b7499
17
src/configure
vendored
17
src/configure
vendored
|
@ -8257,6 +8257,17 @@ _ACEOF
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
################### JIT ####################
|
||||||
|
|
||||||
|
if test "${enable_jit}" = "no" ; then
|
||||||
|
PREFLAGS="${PREFLAGS} -DMZ_DONT_USE_JIT"
|
||||||
|
if test "${enable_futures}" = "yes" ; then
|
||||||
|
echo configure: cannot enable futures and disable the JIT
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
enable_futures=no
|
||||||
|
fi
|
||||||
|
|
||||||
############### places ###################
|
############### places ###################
|
||||||
|
|
||||||
if test "${enable_parallel_by_default}" = "yes" ; then
|
if test "${enable_parallel_by_default}" = "yes" ; then
|
||||||
|
@ -8518,12 +8529,6 @@ if test "${enable_noopt}" = "yes" ; then
|
||||||
CFLAGS=`echo "$CFLAGS" | awk "$AWKPRG"`
|
CFLAGS=`echo "$CFLAGS" | awk "$AWKPRG"`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
################### JIT ####################
|
|
||||||
|
|
||||||
if test "${enable_jit}" = "no" ; then
|
|
||||||
PREFLAGS="${PREFLAGS} -DMZ_DONT_USE_JIT"
|
|
||||||
fi
|
|
||||||
|
|
||||||
############## usersetup ################
|
############## usersetup ################
|
||||||
|
|
||||||
if test "${enable_usersetup}" != "yes" ; then
|
if test "${enable_usersetup}" != "yes" ; then
|
||||||
|
|
|
@ -911,6 +911,17 @@ if test "${endianness}" = "big" ; then
|
||||||
AC_DEFINE(SCHEME_BIG_ENDIAN,1,[Big endian])
|
AC_DEFINE(SCHEME_BIG_ENDIAN,1,[Big endian])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
################### JIT ####################
|
||||||
|
|
||||||
|
if test "${enable_jit}" = "no" ; then
|
||||||
|
PREFLAGS="${PREFLAGS} -DMZ_DONT_USE_JIT"
|
||||||
|
if test "${enable_futures}" = "yes" ; then
|
||||||
|
echo configure: cannot enable futures and disable the JIT
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
enable_futures=no
|
||||||
|
fi
|
||||||
|
|
||||||
############### places ###################
|
############### places ###################
|
||||||
|
|
||||||
if test "${enable_parallel_by_default}" = "yes" ; then
|
if test "${enable_parallel_by_default}" = "yes" ; then
|
||||||
|
@ -1020,12 +1031,6 @@ if test "${enable_noopt}" = "yes" ; then
|
||||||
CFLAGS=`echo "$CFLAGS" | awk "$AWKPRG"`
|
CFLAGS=`echo "$CFLAGS" | awk "$AWKPRG"`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
################### JIT ####################
|
|
||||||
|
|
||||||
if test "${enable_jit}" = "no" ; then
|
|
||||||
PREFLAGS="${PREFLAGS} -DMZ_DONT_USE_JIT"
|
|
||||||
fi
|
|
||||||
|
|
||||||
############## usersetup ################
|
############## usersetup ################
|
||||||
|
|
||||||
if test "${enable_usersetup}" != "yes" ; then
|
if test "${enable_usersetup}" != "yes" ; then
|
||||||
|
|
Loading…
Reference in New Issue
Block a user