From 443c270f5d6cb2d18bbaa6101d2227d6ed44a7a5 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Sun, 2 Feb 2014 11:01:50 +0000 Subject: [PATCH] packages/ffmpeg: disable altivec support The altivec support in the ffmpeg package is enabled by default which causes the following build error on powerpc targets: You need a compiler that supports {} in AltiVec vector declarations. If you think configure made a mistake, make sure you are using the latest version from Git. If the latest version fails, report the problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "config.log" produced by configure as this will help solving the problem. Altivec is not supported by any of our powerpc targets, so disable that by default. Signed-off-by: Gabor Juhos SVN-Revision: 39445 --- multimedia/ffmpeg/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index 0808f520d..355410a91 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -287,6 +287,7 @@ FFMPEG_CONFIGURE:= \ --enable-gpl \ --enable-version3 \ \ + --disable-altivec \ --disable-asm \ --disable-doc \ --disable-dxva2 \ -- 2.30.2