]> git.pld-linux.org Git - packages/mplayer.git/blob - mplayer-altivec.patch
- rework old patch against new mplayer
[packages/mplayer.git] / mplayer-altivec.patch
1 --- mplayer/configure.orig      2009-11-17 23:59:50.000000000 +0100
2 +++ mplayer/configure   2009-11-18 02:23:19.760319977 +0100
3 @@ -742,6 +742,7 @@
4  _w32threads=auto
5  _ass=auto
6  _rpath=no
7 +_disable_altivec=no
8  _asmalign_pot=auto
9  _stream_cache=yes
10  _priority=no
11 @@ -1315,7 +1316,7 @@
12    --enable-fast-cmov) _fast_cmov=yes ;;
13    --disable-fast-cmov) _fast_cmov=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 @@ -2639,15 +2640,15 @@
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      cat > $TMPC << EOF
30  int main(void) { return 0; }
31  EOF
32 -    if $(cc_check -maltivec -mabi=altivec) ; then
33 -    _altivec_gcc_flags="-maltivec -mabi=altivec"
34 +    if $(cc_check -maltivec) ; then
35 +    _altivec_gcc_flags="-maltivec"
36      # check if <altivec.h> should be included
37      cat > $TMPC << EOF
38  #include <altivec.h>
This page took 0.049074 seconds and 3 git commands to generate.