mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
--- a/Alc/ALu.c
|
||||
+++ b/Alc/ALu.c
|
||||
@@ -799,15 +799,7 @@
|
||||
|
||||
SuspendContext(ALContext);
|
||||
|
||||
-#if defined(HAVE_FESETROUND)
|
||||
- fpuState = fegetround();
|
||||
- fesetround(FE_TOWARDZERO);
|
||||
-#elif defined(HAVE__CONTROLFP)
|
||||
- fpuState = _controlfp(0, 0);
|
||||
- _controlfp(_RC_CHOP, _MCW_RC);
|
||||
-#else
|
||||
(void)fpuState;
|
||||
-#endif
|
||||
|
||||
//Figure output format variables
|
||||
BlockAlign = aluChannelsFromFormat(format);
|
||||
@@ -16,6 +16,7 @@ config BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
||||
config BR2_PACKAGE_OPENAL
|
||||
bool "openal"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 PR56019
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
||||
help
|
||||
@@ -26,7 +27,8 @@ config BR2_PACKAGE_OPENAL
|
||||
|
||||
http://kcat.strangesoft.net/openal.html
|
||||
|
||||
comment "openal needs a toolchain w/ NPTL, C++"
|
||||
comment "openal needs a toolchain w/ NPTL, C++, gcc >= 4.9"
|
||||
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
|
||||
|| !BR2_INSTALL_LIBSTDCPP
|
||||
|| !BR2_INSTALL_LIBSTDCPP \
|
||||
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 9f8ac1e27fba15a59758a13f0c7f6540a0605b6c3a691def9d420570506d7e82 openal-soft-1.18.2.tar.bz2
|
||||
sha256 fd615dedcdb67707e96eb1176247e0789ee85ee5ff211e8a7b503d3883a3f938 openal-soft-1.0.38.tar.bz2
|
||||
sha256 e8ef5f057fa3c3b967a628e384f6d55b109456656b61e939febf3ee4472b0b4e openal-soft-1.8.466.tar.bz2
|
||||
sha256 b6ceb051325732c23f5c8b6d37dbd89534517e6439a87e970882b447c3025d6d openal-soft-1.20.1.tar.bz2
|
||||
sha256 b59438e2daf38a02e2ad482f4102d2ceb861ac6c185e2f058d13db73c9ce2437 openal-soft-1.10.622.tar.bz2
|
||||
sha256 6bf41cb2c18902eea10a02fa2cd5a48a5d35216da5dd276a21eece235234a097 openal-soft-1.9.563.tar.bz2
|
||||
sha256 8ac17e4e3b32c1af3d5508acfffb838640669b4274606b7892aa796ca9d7467f openal-1.21.1.tar.gz
|
||||
sha256 d808ce217e5b611854da622b57ec29fe545584c48bc5352fae72a4b6e5074a15 COPYING
|
||||
|
||||
@@ -4,16 +4,14 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENAL_VERSION = 1.8.466
|
||||
OPENAL_SOURCE = openal-soft-$(OPENAL_VERSION).tar.bz2
|
||||
OPENAL_SITE = https://openal-soft.org/openal-releases
|
||||
OPENAL_VERSION = 1.21.1
|
||||
OPENAL_SITE = $(call github,kcat,openal-soft,$(OPENAL_VERSION))
|
||||
OPENAL_LICENSE = LGPL-2.0+
|
||||
OPENAL_LICENSE_FILES = COPYING
|
||||
OPENAL_INSTALL_STAGING = YES
|
||||
|
||||
# We don't need examples, tests and utilities, Distros don't ship them either
|
||||
OPENAL_CONF_OPTS += -DALSOFT_UTILS=OFF -DALSOFT_EXAMPLES=OFF -DALSOFT_TESTS=OFF
|
||||
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_OSS=OFF
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_4_8),y)
|
||||
OPENAL_CONF_OPTS += -DEXTRA_LIBS=atomic
|
||||
@@ -40,8 +38,11 @@ else
|
||||
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PORTAUDIO=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_4_8),y)
|
||||
OPENAL_CONF_OPTS += -DEXTRA_LIBS=atomic
|
||||
ifeq ($(BR2_PACKAGE_PULSEAUDIO),y)
|
||||
OPENAL_DEPENDENCIES += pulseaudio
|
||||
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PULSEAUDIO=ON
|
||||
else
|
||||
OPENAL_CONF_OPTS += -DALSOFT_REQUIRE_PULSEAUDIO=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
|
||||
Reference in New Issue
Block a user