Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/openal-soft-1.18.2.tar.bz2
|
||||
SOURCES/openal-soft-1.19.1.tar.bz2
|
||||
|
@ -1 +1 @@
|
||||
84d4dd33db40ce8a7347234e632965bceb984950 SOURCES/openal-soft-1.18.2.tar.bz2
|
||||
849db47ec3711f0181c4462b2d204c4a3d5937d2 SOURCES/openal-soft-1.19.1.tar.bz2
|
||||
|
@ -5,7 +5,7 @@ Index: openal-soft-1.16.0/CMakeLists.txt
|
||||
@@ -679,7 +679,7 @@ ENDIF()
|
||||
# Check for ARM Neon support
|
||||
OPTION(ALSOFT_REQUIRE_NEON "Require ARM Neon support" OFF)
|
||||
CHECK_INCLUDE_FILE(arm_neon.h HAVE_ARM_NEON_H)
|
||||
CHECK_INCLUDE_FILE(arm_neon.h HAVE_ARM_NEON_H ${FPU_NEON_SWITCH})
|
||||
-IF(HAVE_ARM_NEON_H)
|
||||
+IF(HAVE_ARM_NEON_H AND CMAKE_SIZEOF_VOID_P EQUAL 4) # only 32-bit ARM
|
||||
OPTION(ALSOFT_CPUEXT_NEON "Enable ARM Neon support" ON)
|
||||
|
16
SOURCES/openal-soft-fcommon-fix.patch
Normal file
16
SOURCES/openal-soft-fcommon-fix.patch
Normal file
@ -0,0 +1,16 @@
|
||||
diff -up openal-soft-1.19.1/Alc/bformatdec.h~ openal-soft-1.19.1/Alc/bformatdec.h
|
||||
--- openal-soft-1.19.1/Alc/bformatdec.h~ 2018-10-12 00:05:31.000000000 +0200
|
||||
+++ openal-soft-1.19.1/Alc/bformatdec.h 2020-02-16 16:11:57.105035079 +0100
|
||||
@@ -24,9 +24,9 @@
|
||||
/* NOTE: These are scale factors as applied to Ambisonics content. Decoder
|
||||
* coefficients should be divided by these values to get proper N3D scalings.
|
||||
*/
|
||||
-const ALfloat N3D2N3DScale[MAX_AMBI_COEFFS];
|
||||
-const ALfloat SN3D2N3DScale[MAX_AMBI_COEFFS];
|
||||
-const ALfloat FuMa2N3DScale[MAX_AMBI_COEFFS];
|
||||
+extern const ALfloat N3D2N3DScale[MAX_AMBI_COEFFS];
|
||||
+extern const ALfloat SN3D2N3DScale[MAX_AMBI_COEFFS];
|
||||
+extern const ALfloat FuMa2N3DScale[MAX_AMBI_COEFFS];
|
||||
|
||||
|
||||
struct AmbDecConf;
|
@ -1,25 +1,31 @@
|
||||
%define __cmake_in_source_build 1
|
||||
|
||||
Name: openal-soft
|
||||
Version: 1.18.2
|
||||
Release: 7%{?dist}
|
||||
Version: 1.19.1
|
||||
Release: 16%{?dist}
|
||||
Summary: Open Audio Library
|
||||
|
||||
License: LGPLv2+
|
||||
URL: http://kcat.strangesoft.net/openal.html
|
||||
Source0: http://kcat.strangesoft.net/openal-releases/openal-soft-%{version}.tar.bz2
|
||||
URL: http://openal-soft.org/
|
||||
Source0: http://openal-soft.org/openal-releases/openal-soft-%{version}.tar.bz2
|
||||
Patch0: openal-soft-arm_neon-only-for-32bit.patch
|
||||
Patch1: openal-soft-fcommon-fix.patch
|
||||
|
||||
%if 0%{?fedora}
|
||||
%global enable_SDL_sound 1
|
||||
%endif
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: alsa-lib-devel
|
||||
BuildRequires: cmake
|
||||
BuildRequires: pulseaudio-libs-devel
|
||||
BuildRequires: qt5-devel
|
||||
BuildRequires: SDL2-devel
|
||||
%if 0%{?enable_SDL_sound}
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
%if 0%{?fedora}
|
||||
BuildRequires: fluidsynth-devel
|
||||
BuildRequires: portaudio-devel
|
||||
%endif
|
||||
%if 0%{?fedora} || 0%{?rhel} < 9
|
||||
BuildRequires: SDL_sound-devel
|
||||
%endif
|
||||
BuildRequires: pulseaudio-libs-devel
|
||||
BuildRequires: qt5-qtbase-devel
|
||||
BuildRequires: SDL2-devel
|
||||
Obsoletes: openal <= 0.0.10
|
||||
Provides: openal = %{version}
|
||||
|
||||
@ -88,7 +94,6 @@ sed -i 's/#allow-moves = false/allow-moves = true/' \
|
||||
%exclude %{_datadir}/openal/presets/presets.txt
|
||||
|
||||
%files devel
|
||||
%{_bindir}/bsincgen
|
||||
%{_bindir}/makehrtf
|
||||
%{_includedir}/*
|
||||
%{_libdir}/libopenal.so
|
||||
@ -96,25 +101,83 @@ sed -i 's/#allow-moves = false/allow-moves = true/' \
|
||||
%{_libdir}/cmake/OpenAL
|
||||
|
||||
%files examples
|
||||
%{_bindir}/alrecord
|
||||
%{_bindir}/altonegen
|
||||
%if 0%{?enable_SDL_sound}
|
||||
%if 0%{?fedora} || 0%{?rhel} < 9
|
||||
%{_bindir}/alhrtf
|
||||
%{_bindir}/allatency
|
||||
%{_bindir}/alloopback
|
||||
%{_bindir}/almultireverb
|
||||
%{_bindir}/alplay
|
||||
%{_bindir}/alreverb
|
||||
%{_bindir}/alstream
|
||||
%endif
|
||||
%{_bindir}/alrecord
|
||||
%{_bindir}/altonegen
|
||||
|
||||
%files qt
|
||||
%{_bindir}/alsoft-config
|
||||
|
||||
%changelog
|
||||
* Sun Jul 22 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.18.2-7
|
||||
- Remove fluidsynth and and portaudio dependencies
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.19.1-16
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Sun Jul 1 2018 Wim Taymans <wim.taymans@redhat.com> - 1.18.2-6
|
||||
- Only enable examples using SDL_sound on fedora (#1596651)
|
||||
* Wed Aug 04 2021 Wim Taymans <wtaymans@redhat.com> - 1.19.1-15
|
||||
- Don't package some examples when SDL_sound is disabled
|
||||
|
||||
* Mon Aug 02 2021 Wim Taymans <wtaymans@redhat.com> - 1.19.1-14
|
||||
- Only build SDL_sound support on Fedora and rhel < 9
|
||||
- Resolves: rhbz#1989141
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.19.1-13
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Jan 21 2021 Wim Taymans <wtaymans@redhat.com> - 1.19.1-11
|
||||
- Only build fluidsynth support on Fedora
|
||||
|
||||
* Wed Jan 20 2021 Hans de Goede <hdegoede@redhat.com> - 1.19.1-10
|
||||
- Only build portaudio-backend on Fedora
|
||||
|
||||
* Tue Aug 04 2020 François Cami <fcami@fedoraproject.org> - 1.19.1-9
|
||||
- Fix FTBFS (rhbz#1865148)
|
||||
- Set __cmake_in_source_build
|
||||
- BR qt5-qtbase-devel to keep the GUI frontend
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-8
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat Jul 18 2020 Jeff Law <law@redhat.com> - 1.19.1-6
|
||||
- Drop qt5-devel buildrequires
|
||||
|
||||
* Sun Feb 16 2020 Hans de Goede <hdegoede@redhat.com> - 1.19.1-5
|
||||
- Fix FTBFS (rhbz#1799829)
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Oct 29 2018 François Cami <fcami@fedoraproject.org> - 1.19.1-1
|
||||
- New upstream release
|
||||
- Update upstream URLs for real
|
||||
|
||||
* Mon Oct 8 2018 François Cami <fcami@fedoraproject.org> - 1.19.0-1
|
||||
- Update upstream URLs to http://openal-soft.org/
|
||||
- New upstream release
|
||||
- Rebase patches
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Feb 26 2018 Hans de Goede <hdegoede@redhat.com> - 1.18.2-5
|
||||
- Allow pulseaudio to move openal-soft output streams (rhbz#1544381)
|
||||
|
Loading…
Reference in New Issue
Block a user