Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package spandsp for openSUSE:Factory checked in at 2022-04-26 20:15:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/spandsp (Old) and /work/SRC/openSUSE:Factory/.spandsp.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spandsp" Tue Apr 26 20:15:06 2022 rev:13 rq:972496 version:3.0.0.g15 Changes: -------- --- /work/SRC/openSUSE:Factory/spandsp/spandsp.changes 2022-04-14 17:23:18.803112468 +0200 +++ /work/SRC/openSUSE:Factory/.spandsp.new.1538/spandsp.changes 2022-04-26 20:17:10.172717194 +0200 @@ -1,0 +2,5 @@ +Mon Apr 18 07:38:15 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Add no-sse.diff + +------------------------------------------------------------------- New: ---- no-sse.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ spandsp.spec ++++++ --- /var/tmp/diff_new_pack.nfnEqb/_old 2022-04-26 20:17:10.672717799 +0200 +++ /var/tmp/diff_new_pack.nfnEqb/_new 2022-04-26 20:17:10.676717804 +0200 @@ -27,6 +27,7 @@ Source: %name-%version.tar.xz Source2: baselibs.conf +Patch1: no-sse.diff Patch2: spandsp-raise-traintime-tolerance.diff Patch3: spandsp-handle-international-dialstring-prefix.diff BuildRequires: docbook-xsl-stylesheets @@ -90,18 +91,14 @@ %prep %autosetup -p1 +# The cpuid calls in the source code only apply to a test program. +# The library itself is (was) statically enabling -msse during configure, which +# is now removed. %build %define _lto_cflags %nil autoreconf -fiv -# Enabling MMX could be safe.. I see cpuid calls in the source %configure \ -%ifarch i586 i686 - --enable-mmx \ -%endif -%ifarch x86_64 - --enable-sse --enable-sse2 \ -%endif --disable-static \ --enable-doc %make_build ++++++ no-sse.diff ++++++ --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) Index: spandsp-3.0.0.g15/configure.ac =================================================================== --- spandsp-3.0.0.g15.orig/configure.ac +++ spandsp-3.0.0.g15/configure.ac @@ -350,6 +350,7 @@ gnu) if test x"$ac_cv_gcc_unused_but_set_variable" = xyes ; then COMP_VENDOR_CFLAGS="-Wunused-but-set-variable $COMP_VENDOR_CFLAGS" fi +if false; then AX_CHECK_ARM_NEON([$host], [AC_DEFINE([SPANDSP_USE_ARM_NEON], [1], [Use the ARM NEON instruction set])]) if test "$enable_neon" = "yes" ; then @@ -382,6 +383,7 @@ gnu) if test "$enable_mmx" = "yes" ; then COMP_VENDOR_CFLAGS="-mmmx $COMP_VENDOR_CFLAGS" fi +fi case $host_os in cygwin*) COMP_VENDOR_LDFLAGS="-no-undefined"