[SCM] vlc/master: --with-tuning was removed in 2.1.0

edwardw-guest at users.alioth.debian.org edwardw-guest at users.alioth.debian.org
Sun Oct 6 23:01:02 UTC 2013


The following commit has been merged in the master branch:
commit 614cd9ba7bfc429f4efbc3b5dd776eb1f2779727
Author: Edward Wang <edward.c.wang at compdigitec.com>
Date:   Sun Oct 6 11:03:13 2013 -0400

    --with-tuning was removed in 2.1.0

diff --git a/debian/rules b/debian/rules
index 7ff2737..56f10fc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,11 +22,12 @@ ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
 confflags += --disable-optimizations --disable-mmx --disable-sse --disable-altivec
 endif
 
+CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+
 # configure flags
 confflags += \
-	CFLAGS="$(shell dpkg-buildflags --get CFLAGS)" \
 	CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)" \
-	CXXFLAGS="$(shell dpkg-buildflags --get CXXFLAGS)" \
 	LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS)" \
 	--config-cache \
 	--disable-maintainer-mode \
@@ -203,9 +204,14 @@ endif
 
 # PowerPCSPE specific optimizations
 ifeq (,$(filter-out powerpcspe,$(DEB_HOST_ARCH)))
-confflags += --with-tuning=8548
+CFLAGS += -mtune=8548
+CXXFLAGS += -mtune=8548
 endif
 
+confflags += \
+	CFLAGS="$(CFLAGS)" \
+	CXXFLAGS="$(CXXFLAGS)" \
+
 %:
 	dh $@ --parallel --with autoreconf
 

-- 
VLC media player packaging



More information about the pkg-multimedia-commits mailing list