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>
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_SOLARUS
|
|
bool "solarus"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_PACKAGE_LUAINTERPRETER_ABI_VERSION_5_1
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # openal
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
|
|
depends on !BR2_STATIC_LIBS # SDL2
|
|
depends on BR2_PACKAGE_HAS_LIBGL
|
|
select BR2_PACKAGE_GLM
|
|
select BR2_PACKAGE_LIBMODPLUG
|
|
select BR2_PACKAGE_LIBOGG
|
|
select BR2_PACKAGE_LIBPNG # runtime
|
|
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_TTF
|
|
help
|
|
Solarus is an open-source Zelda-like 2D game engine written
|
|
in C++. It can run games scripted in Lua. This engine is used
|
|
by our Zelda fangames. Solarus is licensed under GPL v3.
|
|
|
|
http://www.solarus-games.org
|
|
https://github.com/solarus-games/solarus
|
|
|
|
comment "solarus needs OpenGL and a toolchain w/ C++, gcc >= 4.9, NPTL, dynamic library, and luajit or lua 5.1"
|
|
depends on !BR2_PACKAGE_LUAINTERPRETER_ABI_VERSION_5_1
|
|
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS \
|
|
|| !BR2_PACKAGE_HAS_LIBGL
|