summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorSteven M. Schultz <sms@2bsd.com>2005-08-21 20:33:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-08-21 20:33:00 +0000
commit49f1a34937036d6f438491f9cfdec7ea79c1eec7 (patch)
tree1d6c0f19e777774a27bf815c1613f63beb91046f /configure
parentc57c770db3c41ac4caea8379c4053489bffeb032 (diff)
reversing:
revision 1.199 date: 2005/08/11 23:40:51; author: michael; state: Exp; lines: +1 -1 Need -maltivec in addition to -faltivec for OSX patch by ("Steven M. Schultz": sms ; 2BSD COM) reason, breaks if cpu doesnt support altivec Originally committed as revision 4534 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 44ffa941f6..76b642a950 100755
--- a/configure
+++ b/configure
@@ -736,7 +736,7 @@ fi
if test $cpu = "powerpc"; then
if test $altivec = "yes"; then
if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then
- CFLAGS="$CFLAGS -faltivec -maltivec"
+ CFLAGS="$CFLAGS -faltivec"
else
CFLAGS="$CFLAGS -maltivec -mabi=altivec"
fi