From 597cad6a04b5d8940dbb8f6be32ae974c8d19eed Mon Sep 17 00:00:00 2001 From: "Steven M. Schultz" Date: Thu, 11 Aug 2005 23:40:51 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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