From 144b1178869ee0a1f8b4ea6ddba7d2bbce3a65bf Mon Sep 17 00:00:00 2001 From: Seg Date: Wed, 30 Dec 2020 07:54:21 -0800 Subject: [PATCH] Fix JIT enable logic --- BasiliskII/src/Unix/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/Unix/configure.ac b/BasiliskII/src/Unix/configure.ac index 90eb96d9..f102ca94 100755 --- a/BasiliskII/src/Unix/configure.ac +++ b/BasiliskII/src/Unix/configure.ac @@ -1661,7 +1661,7 @@ elif [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then fi dnl Enable JIT compiler, if possible. -if [[ "x$WANT_JIT" = "xyes" -a "x$CAN_JIT" ]]; then +if [[ "x$WANT_JIT" = "xyes" -a "x$CAN_JIT" = "xyes" ]]; then JITSRCS="$JITSRCS ../uae_cpu/compiler/compemu_support.cpp ../uae_cpu/compiler/compemu_fpp.cpp compstbl.o cpustbl_nf.o" DEFINES="$DEFINES -DUSE_JIT -DUSE_JIT_FPU"