From f887fb7bac507f86fda8a17b7fbcaeaf6e6b8514 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Wed, 22 Jun 2005 15:37:25 +0000 Subject: [PATCH] Enable build of the JIT with GCC 2.9x compilers (e.g. "2.96" from MDK 8.1). --- SheepShaver/src/Unix/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/configure.ac b/SheepShaver/src/Unix/configure.ac index eea3afef..344a0ec1 100644 --- a/SheepShaver/src/Unix/configure.ac +++ b/SheepShaver/src/Unix/configure.ac @@ -1239,7 +1239,7 @@ if [[ "x$EMULATED_PPC" = "xyes" ]]; then done fi fi - if [[ -z "$DYNGEN_CC" ]] || ! { echo '#include ' | $DYNGEN_CC -xc++ -c -o /dev/null - >& /dev/null; }; then + if [[ -z "$DYNGEN_CC" ]]; then ac_cv_use_dyngen=no fi ])