diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-21 22:08:50 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-21 22:08:50 +0000 |
commit | fa33e96dd8a9780d6761241c420debe2e16387f7 (patch) | |
tree | 7394123f0a126456ed8ade8fac9b06f7d21f4288 | |
parent | 45626ad18cba03a67c904af579a8f25d8b4a1901 (diff) | |
download | mpv-fa33e96dd8a9780d6761241c420debe2e16387f7.tar.bz2 mpv-fa33e96dd8a9780d6761241c420debe2e16387f7.tar.xz |
Make alpha arch detection more lenient. Taken from the Debian patchset.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28699 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -159,7 +159,7 @@ ppc() { alpha() { case "$host_arch" in - alpha) return 0;; + alpha*) return 0;; *) return 1;; esac } @@ -2183,7 +2183,7 @@ EOF ;; - alpha) + alpha*) _arch='ALPHA' _target_arch='ARCH_ALPHA = yes' iproc='alpha' |