]> git.pld-linux.org Git - packages/mplayer.git/blame - mplayer-kill-mabi_altivec.patch
- face the truth: lzo 2 and polypaudio 0.8 are not supported yet
[packages/mplayer.git] / mplayer-kill-mabi_altivec.patch
CommitLineData
55ca060f 1 when compiled with -mabi=altivec gcc saves and restores altivec registers
2 in long jump macro, it's bad, mplayer don't use long jump much, but uses it
3 for returning from sigill catch routine, so the problem was ILL was sent
4 before sigill catch was completely prepared
5 I hope -mabi=altivec is not really needed
6 -- Sparky
7
8--- MPlayer-1.0pre7try2/configure~ 2006-02-13 18:58:20.000000000 +0100
9+++ MPlayer-1.0pre7try2/configure 2006-02-13 18:59:42.000000000 +0100
10@@ -1957,7 +1957,7 @@
11 return 0;
12 }
13 EOF
14- FSF_flags='-maltivec -mabi=altivec'
15+ FSF_flags='-maltivec'
16 Darwin_flags='-faltivec'
17
18 # check for Darwin-style flags first, since
19--- MPlayer-1.0pre7try2/mp3lib/Makefile~ 2004-10-28 03:15:53.000000000 +0200
20+++ MPlayer-1.0pre7try2/mp3lib/Makefile 2006-02-13 20:54:44.000000000 +0100
21@@ -25,7 +25,7 @@
22 ifeq ($(TARGET_OS),Darwin)
23 CFLAGS += -faltivec
24 else
25-CFLAGS += -maltivec -mabi=altivec
26+CFLAGS += -maltivec
27 endif
28 endif
29 endif
This page took 0.029105 seconds and 4 git commands to generate.