]> git.pld-linux.org Git - packages/mplayer.git/blob - mplayer-altivec.patch
- release 6 (libvpx 1.14)
[packages/mplayer.git] / mplayer-altivec.patch
1 --- mplayer-r32669/configure.orig       2010-11-30 09:25:22.955081286 +0100
2 +++ mplayer-r32669/configure    2010-11-30 09:28:43.457857573 +0100
3 @@ -790,6 +790,7 @@
4  _ass=auto
5  ass_internal=auto
6  _rpath=no
7 +_disable_altivec=no
8  _asmalign_pot=auto
9  _stream_cache=yes
10  _priority=no
11 @@ -1356,7 +1357,7 @@
12    --enable-fast-clz) _fast_clz=yes ;;
13    --disable-fast-clz) _fast_clz=no ;;
14    --enable-altivec) _altivec=yes ;;
15 -  --disable-altivec) _altivec=no ;;
16 +  --disable-altivec) _altivec=no; _disable_altivec=yes ;;
17    --enable-armv5te) _armv5te=yes ;;
18    --disable-armv5te) _armv5te=no ;;
19    --enable-armv6) _armv6=yes ;;
20 @@ -2762,12 +2763,12 @@
21  
22  #FIXME: This should happen before the check for CFLAGS..
23  def_altivec_h='#define HAVE_ALTIVEC_H 0'
24 -if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
25 +if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) && test "$_disable_altivec" != "yes"; then
26  
27      # check if AltiVec is supported by the compiler, and how to enable it
28      echocheck "GCC AltiVec flags"
29      if $(cflag_check -maltivec -mabi=altivec) ; then
30 -    _altivec_gcc_flags="-maltivec -mabi=altivec"
31 +    _altivec_gcc_flags="-maltivec"
32      # check if <altivec.h> should be included
33          if $(header_check altivec.h $_altivec_gcc_flags) ; then
34              def_altivec_h='#define HAVE_ALTIVEC_H 1'
This page took 0.04444 seconds and 3 git commands to generate.