# HG changeset patch # User gabucino # Date 1072353928 0 # Node ID 4204af4b61a1e59bac2cb18458c452bb06ad844e # Parent f2f7c22847b3423c3b5b6ca7d5fe9f2d1ec912dd VAX architecture support (tested on VAXstation 4000/VLC) diff -r f2f7c22847b3 -r 4204af4b61a1 configure --- a/configure Wed Dec 24 23:59:50 2003 +0000 +++ b/configure Thu Dec 25 12:05:28 2003 +0000 @@ -416,7 +416,7 @@ # 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 @@ _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."