summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-23 17:40:25 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-23 17:40:25 +0000
commit0caed087debfe5442295acb04b3b7a745627ef24 (patch)
tree9bff496e9d3e0bef13c01bce85d15f47a498d50d /configure
parent9103dcb237c1c331b648ffacc10e067c1b10c23b (diff)
downloadmpv-0caed087debfe5442295acb04b3b7a745627ef24.tar.bz2
mpv-0caed087debfe5442295acb04b3b7a745627ef24.tar.xz
allows cross-compilation for PPC target when using a toolchain defined as powerpc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23099 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index a9ea510b2f..b7c66f15e5 100755
--- a/configure
+++ b/configure
@@ -139,7 +139,7 @@ x86() {
ppc() {
case "$host_arch" in
- ppc) return 0;;
+ ppc|powerpc) return 0;;
*) return 1;;
esac
}
@@ -1950,7 +1950,7 @@ EOF
_optimizing=''
;;
- ppc)
+ ppc|powerpc)
_def_arch='#define ARCH_POWERPC 1'
_def_dcbzl='#define NO_DCBZL 1'
_target_arch='TARGET_ARCH_POWERPC = yes'