summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-22 18:23:28 +0000
committergabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-10-22 18:23:28 +0000
commita1693d645e144405db51e53c7a65497d2c93fc9d (patch)
tree43c5ea7742198eae640a2092418e6af0df7a5261 /configure
parent7f54293847bf2a730981606d0e56eadbedc72d82 (diff)
downloadmpv-a1693d645e144405db51e53c7a65497d2c93fc9d.tar.bz2
mpv-a1693d645e144405db51e53c7a65497d2c93fc9d.tar.xz
detection of 'Alpha' architecture
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11231 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index 2ea471fc87..0aa14da9c5 100755
--- a/configure
+++ b/configure
@@ -86,6 +86,13 @@ ppc() {
esac
}
+alpha() {
+ case "$host_arch" in
+ alpha) return 0;;
+ *) return 1;;
+ esac
+}
+
# not boolean test: implement the posix shell "!" operator for a
# non-posix /bin/sh.
# usage: not {command}