79f41c3e72
openal uses std::max_align_t since version 1.20.0 and
585b0cf3be
As a result, it is affected by
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56019
and the build with gcc <= 4.8 will fail on:
/home/buildroot/autobuild/instance-2/output-1/build/openal-1.20.1/common/almalloc.cpp: In function 'void* al_malloc(size_t, size_t)':
/home/buildroot/autobuild/instance-2/output-1/build/openal-1.20.1/common/almalloc.cpp:20:45: error: 'max_align_t' is not a member of 'std'
alignment = std::max(alignment, alignof(std::max_align_t));
^
Fixes:
- http://autobuild.buildroot.org/results/589c7853ce334c7502f7cd4cdbcaaf3c6840f43b
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
config BR2_PACKAGE_SUPERTUXKART
|
|
bool "supertuxkart"
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_INSTALL_LIBSTDCPP # openal
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # openal
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS # openal
|
|
depends on BR2_PACKAGE_HAS_LIBGL
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
select BR2_PACKAGE_FREETYPE
|
|
select BR2_PACKAGE_ENET
|
|
select BR2_PACKAGE_HARFBUZZ
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBFRIBIDI
|
|
select BR2_PACKAGE_LIBGLEW
|
|
select BR2_PACKAGE_LIBOGG
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_LIBSQUISH
|
|
select BR2_PACKAGE_LIBVORBIS
|
|
select BR2_PACKAGE_NETTLE if !BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_OPENAL
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Karts. Nitro. Action! SuperTuxKart is a free 3D arcade kart
|
|
racer with multiple karts, tracks and modes you can play.
|
|
Beat the evil Nolok by any means necessary, and make the
|
|
mascot kingdom safe once again!
|
|
|
|
http://supertuxkart.sourceforge.net/Main_Page
|
|
|
|
comment "supertuxkart needs an OpenGL backend, a uClibc or glibc toolchain w/ NPTL, C++, gcc >= 4.9"
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
|
|
|| !BR2_INSTALL_LIBSTDCPP \
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
|
|
|| !BR2_PACKAGE_HAS_LIBGL \
|
|
|| BR2_TOOLCHAIN_USES_MUSL
|