[SCM] drumgizmo/master: Fix sse flag use, now builds on non sse archs

viccuad-guest at users.alioth.debian.org viccuad-guest at users.alioth.debian.org
Wed Nov 11 11:58:05 UTC 2015


The following commit has been merged in the master branch:
commit 8ada00d22a3ffebe1361badb9e3b868ac5ae492a
Author: viccuad <me at viccuad.me>
Date:   Wed Nov 11 12:49:22 2015 +0100

    Fix sse flag use, now builds on non sse archs
    
    Since upstream's configure.ac behaviour for --enable-sse=auto is broken
    (it says the cpu has sse support when it doesn't), I'm using the config
    flag --enable-sse=no to deactivate the auto (in fact, it could be
    whatever out of 1,2,3 or auto, eg: --enable-sse=foobar).

diff --git a/debian/rules b/debian/rules
index 86cd581..34051e1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,6 +11,8 @@ CONFFLAGS=
 ifeq ($(DEB_HOST_ARCH_CPU),$(filter $(DEB_HOST_ARCH_CPU),amd64))
 	CONFFLAGS = --enable-sse
 	FLAGS = -msse3 -mfpmath=sse
+else
+	CONFFLAGS = --enable-sse=no
 endif
 FLAGS += -ffast-math
 CFLAGS += $(FLAGS)

-- 
drumgizmo packaging



More information about the pkg-multimedia-commits mailing list