From e32715621118cca6a441c19eb1605cde30a2a663 Mon Sep 17 00:00:00 2001 From: Ted Hess Date: Tue, 11 Oct 2016 13:38:59 -0400 Subject: [PATCH] ffmpeg: Build without altivec on powerpc hfp platforms Signed-off-by: Ted Hess --- multimedia/ffmpeg/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index cf9514d6a3..a982ea7600 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ffmpeg PKG_VERSION:=2.8.8 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=http://ffmpeg.org/releases/ @@ -407,7 +407,9 @@ FFMPEG_CONFIGURE += \ else ifneq ($(findstring arm,$(CONFIG_ARCH)),) FFMPEG_CONFIGURE += \ --disable-runtime-cpudetect - +else ifneq ($(findstring powerpc,$(CONFIG_ARCH)),) +FFMPEG_CONFIGURE += \ + --disable-altivec endif ifneq ($(CONFIG_YASM),y) -- 2.30.2