# HG changeset patch # User ben # Date 1217889537 0 # Node ID 94b7b2595df13904318d9fba0f0c19496baaa8a5 # Parent cc16875b72dd38677f3e1f641d626a2c32302382 Detect ppc64 and powerpc64 architectures as PowerPC variants. diff -r cc16875b72dd -r 94b7b2595df1 configure --- a/configure Mon Aug 04 13:35:42 2008 +0000 +++ b/configure Mon Aug 04 22:38:57 2008 +0000 @@ -140,7 +140,7 @@ ppc() { case "$host_arch" in - ppc|powerpc) return 0;; + ppc|ppc64|powerpc|powerpc64) return 0;; *) return 1;; esac } @@ -2022,7 +2022,7 @@ _optimizing='' ;; - ppc|powerpc) + ppc|ppc64|powerpc|powerpc64) _arch='POWERPC PPC' _def_dcbzl='#undef HAVE_DCBZL' _target_arch='ARCH_POWERPC = yes'