[SCM] vlc/master: Fix build failure on powerpcspe.

bdrung at users.alioth.debian.org bdrung at users.alioth.debian.org
Fri Mar 1 23:23:09 UTC 2013


The following commit has been merged in the master branch:
commit 810b977f95bc2f050be3c66e4468d52d7f07e64c
Author: Benjamin Drung <bdrung at debian.org>
Date:   Sat Mar 2 00:14:41 2013 +0100

    Fix build failure on powerpcspe.
    
    Thanks: Roland Stigge <stigge at antcom.de>
    Closes: #701830

diff --git a/debian/rules b/debian/rules
index b503974..471a81c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -193,14 +193,19 @@ confflags += --disable-neon
 removeplugins += neon
 endif
 
-# PowerPC specific optimizations
-ifneq ($(filter $(DEB_HOST_ARCH_CPU),powerpc),)
+# PowerPC specific optimizations (excluding powerpcspe)
+ifeq (,$(filter-out powerpc,$(DEB_HOST_ARCH_CPU))$(filter powerpcspe,$(DEB_HOST_ARCH)))
 confflags += --enable-altivec
 else
 confflags += --disable-altivec
 removeplugins += altivec
 endif
 
+# PowerPCSPE specific optimizations
+ifeq (,$(filter-out powerpcspe,$(DEB_HOST_ARCH))
+confflags += --with-tuning=8548
+endif
+
 %:
 	dh $@ --parallel --with autoreconf
 

-- 
VLC media player packaging



More information about the pkg-multimedia-commits mailing list