From 8e64481dd72c61c56976b18b39373d01253829d1 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 25 Apr 2022 12:14:35 +0100 Subject: [PATCH] Fixup some missing features Signed-off-by: falkTX --- sources/libs/fftw-static/debian/changelog | 6 ++++++ sources/libs/fftw-static/debian/rules | 1 - sources/libs/libsndfile-static/debian/changelog | 2 +- sources/libs/libsndfile-static/debian/control | 2 +- sources/libs/mpg123-static/debian/changelog | 6 ++++++ sources/libs/mpg123-static/debian/rules | 6 ++---- 6 files changed, 16 insertions(+), 7 deletions(-) diff --git a/sources/libs/fftw-static/debian/changelog b/sources/libs/fftw-static/debian/changelog index 2aae101..446d534 100644 --- a/sources/libs/fftw-static/debian/changelog +++ b/sources/libs/fftw-static/debian/changelog @@ -1,3 +1,9 @@ +fftw3-static (6:3.3.10-1kxstudio2) focal; urgency=medium + + * Build with SSE + + -- falkTX Mon, 25 Apr 2022 00:44:13 +0100 + fftw3-static (6:3.3.10-1kxstudio1) focal; urgency=medium * Initial package diff --git a/sources/libs/fftw-static/debian/rules b/sources/libs/fftw-static/debian/rules index bdc31d2..a984c22 100755 --- a/sources/libs/fftw-static/debian/rules +++ b/sources/libs/fftw-static/debian/rules @@ -1,6 +1,5 @@ #!/usr/bin/make -f -KXSTUDIO_NO_SSE = y include /usr/share/dpkg/kxstudio.mk BASE_CONFIG = \ diff --git a/sources/libs/libsndfile-static/debian/changelog b/sources/libs/libsndfile-static/debian/changelog index 28994e8..3988185 100644 --- a/sources/libs/libsndfile-static/debian/changelog +++ b/sources/libs/libsndfile-static/debian/changelog @@ -1,4 +1,4 @@ -libsndfile-static (6:1.1.0-2kxstudio1) focal; urgency=medium +libsndfile-static (6:1.1.0-2kxstudio2) focal; urgency=medium * Fix missing mp3 support diff --git a/sources/libs/libsndfile-static/debian/control b/sources/libs/libsndfile-static/debian/control index 4325654..d123524 100644 --- a/sources/libs/libsndfile-static/debian/control +++ b/sources/libs/libsndfile-static/debian/control @@ -10,7 +10,7 @@ Build-Depends: debhelper-compat (= 13), pkg-config, flac-static, libmp3lame-static, - libmpg123-static, + libmpg123-static (>= 6:1.29.3-2kxstudio2), libopus-static, libvorbis-static, libasound2-dev, diff --git a/sources/libs/mpg123-static/debian/changelog b/sources/libs/mpg123-static/debian/changelog index e9bef85..607d42c 100644 --- a/sources/libs/mpg123-static/debian/changelog +++ b/sources/libs/mpg123-static/debian/changelog @@ -1,3 +1,9 @@ +mpg123-static (6:1.29.3-2kxstudio2) focal; urgency=medium + + * Do not use fpu for ARM builds, fixing libsndfile test-case + + -- falkTX Mon, 25 Apr 2022 00:53:14 +0100 + mpg123-static (6:1.29.3-1kxstudio3) focal; urgency=medium * Initial package diff --git a/sources/libs/mpg123-static/debian/rules b/sources/libs/mpg123-static/debian/rules index 15396b7..68802c8 100755 --- a/sources/libs/mpg123-static/debian/rules +++ b/sources/libs/mpg123-static/debian/rules @@ -3,12 +3,10 @@ KXSTUDIO_NO_FASTMATH = y include /usr/share/dpkg/kxstudio.mk -# export LDFLAGS += -Wl,--whole-archive - ifeq ($(DEB_HOST_ARCH),armhf) -EXTRA_CONFIG = --with-cpu=neon +EXTRA_CONFIG = --with-cpu=arm_nofpu else ifeq ($(DEB_HOST_ARCH),arm64) -EXTRA_CONFIG = --with-cpu=neon64 +EXTRA_CONFIG = --with-cpu=generic_nofpu else EXTRA_CONFIG = --with-cpu=x86-64 endif