openal 1.22.0 does not build with GCC 15.x, but the backport of the fixes to 1.22.0 turns out to be too complicated, so let's bump to 1.24.3 instead. Since 1.24.3 uses C++17, and after testing with GCC 7.x, then GCC 8.x then GCC 9.x, we found out that GCC 9.x at least is necessary. Therefore, reverse dependencies are updated accordingly. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
config BR2_PACKAGE_SUPERTUX
|
|
bool "supertux"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_PACKAGE_HAS_LIBGL # libglew
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_XORG7 # libglew, SDL2 OpenGL (GLX)
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9 # openal
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-filesystem
|
|
depends on BR2_USE_MMU # SDL2 OpenGL (GLX)
|
|
depends on !BR2_STATIC_LIBS # SDL2
|
|
depends on BR2_USE_WCHAR # Boost
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST_DATE_TIME
|
|
select BR2_PACKAGE_BOOST_FILESYSTEM
|
|
select BR2_PACKAGE_BOOST_LOCALE
|
|
select BR2_PACKAGE_BOOST_SYSTEM
|
|
select BR2_PACKAGE_FREETYPE
|
|
select BR2_PACKAGE_GLM
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBGLEW
|
|
select BR2_PACKAGE_LIBOGG
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_LIBVORBIS
|
|
select BR2_PACKAGE_OPENAL
|
|
select BR2_PACKAGE_PHYSFS
|
|
select BR2_PACKAGE_SDL2
|
|
select BR2_PACKAGE_SDL2_IMAGE
|
|
select BR2_PACKAGE_SDL2_OPENGL
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
SuperTux is a free classic 2D jump'n run sidescroller game in
|
|
a style similar to the original Super Mario games covered
|
|
under the GNU GPL.
|
|
|
|
http://supertux.github.io/
|
|
|
|
comment "supertux needs OpenGL and a toolchain w/ C++, gcc >= 9, NPTL, dynamic library, wchar"
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_HAS_LIBGL || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_9 || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
|
|
BR2_STATIC_LIBS || !BR2_USE_WCHAR
|