diff options
author | gabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-12-25 12:05:28 +0000 |
---|---|---|
committer | gabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-12-25 12:05:28 +0000 |
commit | a33b1cc05f41e1972467aaab7bc533dcac097a00 (patch) | |
tree | 26186bfd8001a3ef0b6f1778ceb5eb2384710e06 /configure | |
parent | 10db0df7633ad6f1d90903cb3bc118b0d40448b2 (diff) | |
download | mpv-a33b1cc05f41e1972467aaab7bc533dcac097a00.tar.bz2 mpv-a33b1cc05f41e1972467aaab7bc533dcac097a00.tar.xz |
VAX architecture support (tested on VAXstation 4000/VLC)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11682 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -416,7 +416,7 @@ if test -z "$_target" ; then # host's CPU/instruction set host_arch=`( uname -p ) 2>&1` case "$host_arch" in - i386|sparc|ppc|alpha|arm|mips) + i386|sparc|ppc|alpha|arm|mips|vax) ;; powerpc) # Darwin returns 'powerpc' host_arch=ppc @@ -1003,6 +1003,16 @@ EOF _optimizing='' ;; + vax) + _def_arch='#define ARCH_VAX 1' + _target_arch='TARGET_ARCH_VAX = yes' + iproc='vax' + proc='' + _march='' + _mcpu='' + _optimizing='' + ;; + *) echo "The architecture of your CPU ($host_arch) is not supported by this configure script" echo "It seems nobody has ported MPlayer to your OS or CPU type yet." |