1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-30 23:38:10 +00:00

VAX architecture support (tested on VAXstation 4000/VLC)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11682 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gabucino 2003-12-25 12:05:28 +00:00
parent 10db0df763
commit a33b1cc05f

12
configure vendored
View File

@ -416,7 +416,7 @@ if test -z "$_target" ; then
# host's CPU/instruction set # host's CPU/instruction set
host_arch=`( uname -p ) 2>&1` host_arch=`( uname -p ) 2>&1`
case "$host_arch" in case "$host_arch" in
i386|sparc|ppc|alpha|arm|mips) i386|sparc|ppc|alpha|arm|mips|vax)
;; ;;
powerpc) # Darwin returns 'powerpc' powerpc) # Darwin returns 'powerpc'
host_arch=ppc host_arch=ppc
@ -1003,6 +1003,16 @@ EOF
_optimizing='' _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 "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." echo "It seems nobody has ported MPlayer to your OS or CPU type yet."