From 49f1a34937036d6f438491f9cfdec7ea79c1eec7 Mon Sep 17 00:00:00 2001 From: "Steven M. Schultz" Date: Sun, 21 Aug 2005 20:33:00 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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