From 3174c77a3ed0db38c79de086d3f1ba3aba31acf8 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 13 Jan 2008 23:58:12 +0000 Subject: [PATCH] =?UTF-8?q?gcc2=20doesn't=20have=20bogus=20mergel,=20patch?= =?UTF-8?q?=20from=20Sigbj=C3=B8rn=20Skj=C3=A6ret=20cisc...broadpark=5F=5F?= =?UTF-8?q?=5Fno?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 11523 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/gcc_fixes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ppc/gcc_fixes.h b/libavcodec/ppc/gcc_fixes.h index c81b4ed20c..ccce3f6582 100644 --- a/libavcodec/ppc/gcc_fixes.h +++ b/libavcodec/ppc/gcc_fixes.h @@ -35,7 +35,7 @@ # define REG_v(a) asm ( #a ) #endif -#if (__GNUC__ * 100 + __GNUC_MINOR__ < 303) +#if (__GNUC__ > 2) && (__GNUC__ * 100 + __GNUC_MINOR__ < 303) /* This code was provided to me by Bartosch Pixa * as a separate header file (broken_mergel.h).