summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorSteven M. Schultz <sms@2bsd.com>2005-08-11 23:40:51 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-08-11 23:40:51 +0000
commit597cad6a04b5d8940dbb8f6be32ae974c8d19eed (patch)
tree3681d045cbe02c51a8a7b588404d5f77b0ff6bbd /configure
parent9f747cc328de389eb3748038202f753316a0a6ab (diff)
Need -maltivec in addition to -faltivec for OSX patch by ("Steven M. Schultz": sms ; 2BSD COM)
Originally committed as revision 4506 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 76b642a950..44ffa941f6 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"
+ CFLAGS="$CFLAGS -faltivec -maltivec"
else
CFLAGS="$CFLAGS -maltivec -mabi=altivec"
fi