From b2d58d423e99ef6d1604a11e5c057238b009def4 Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Fri, 24 Sep 2010 00:36:34 +0000 Subject: [PATCH] Fix compile problem with --enable-jit=no --- SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.hpp b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.hpp index 18b0faef..c418386e 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.hpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.hpp @@ -29,7 +29,9 @@ #include "cpu/ppc/ppc-bitfields.hpp" #include "cpu/ppc/ppc-blockinfo.hpp" #include "cpu/ppc/ppc-registers.hpp" +#if PPC_ENABLE_JIT #include "cpu/ppc/ppc-jit.hpp" +#endif #include "cpu/ppc/ppc-instructions.hpp" #include