From e616062d6dd4e672cfd39e2ef706ea17c9142def Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Tue, 14 Jun 2005 06:35:00 +0000 Subject: [PATCH] Apple GCC uses __ppc__ as the arch token --- 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 cc0d05a0..ebcdf225 100644 --- a/SheepShaver/src/Unix/configure.ac +++ b/SheepShaver/src/Unix/configure.ac @@ -1143,7 +1143,7 @@ if [[ "x$ac_cv_use_dyngen" = "xyes" ]]; then AC_CACHE_CHECK([whether static data regions are executable], ac_cv_have_static_data_exec, [ AC_TRY_RUN([int main(void) { -#if defined(__powerpc__) +#if defined(__powerpc__) || defined(__ppc__) static unsigned int p[8] = {0x4e800020,}; asm volatile("dcbst 0,%0" : : "r" (p) : "memory"); asm volatile("sync" : : : "memory");