[SCM] drumgizmo/master: Use only sse2 on amd64

jcowgill at users.alioth.debian.org jcowgill at users.alioth.debian.org
Mon Nov 7 17:22:02 UTC 2016


The following commit has been merged in the master branch:
commit a8a456a159d37b36ff037dd0c93eb695aff3c2a3
Author: James Cowgill <jcowgill at debian.org>
Date:   Mon Nov 7 15:06:37 2016 +0000

    Use only sse2 on amd64
    
    SSE3 is not part of the amd64 base architecture so it is not safe to use
    it. Fix by using drumgizmo's --enable-sse=2 option. Also remove
    -mfpmath=sse which is already the default on amd64.
    
    Closes: #843149

diff --git a/debian/rules b/debian/rules
index 2e47bcc..389f9da 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,8 +9,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 FLAGS=
 CONFFLAGS=
 ifeq ($(DEB_HOST_ARCH_CPU),$(filter $(DEB_HOST_ARCH_CPU),amd64))
-	CONFFLAGS = --enable-sse
-	FLAGS = -msse3 -mfpmath=sse
+	CONFFLAGS = --enable-sse=2
 else
 	CONFFLAGS = --enable-sse=no
 endif

-- 
drumgizmo packaging



More information about the pkg-multimedia-commits mailing list