package/minetest: enable sound support

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017.11.x
Romain Naour 2017-07-13 14:40:47 +02:00 committed by Thomas Petazzoni
parent bcb53e87a2
commit cce9887f85
2 changed files with 20 additions and 1 deletions

View File

@ -37,6 +37,19 @@ config BR2_PACKAGE_MINETEST_SERVER
help
Build Minetest server.
config BR2_PACKAGE_MINETEST_SOUND
bool "enable sound"
depends on BR2_PACKAGE_MINETEST_CLIENT
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
select BR2_PACKAGE_LIBVORBIS
select BR2_PACKAGE_OPENAL
comment "sound support needs a toolchain w/ threads NPTL"
depends on BR2_PACKAGE_MINETEST_CLIENT
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
endif
comment "minetest needs a toolchain w/ C++, gcc >= 4.7, threads"

View File

@ -13,7 +13,6 @@ MINETEST_DEPENDENCIES = gmp irrlicht jsoncpp luajit sqlite zlib
MINETEST_CONF_OPTS = \
-DDEFAULT_RUN_IN_PLACE=OFF \
-DENABLE_SOUND=OFF \
-DENABLE_GLES=OFF \
-DENABLE_LUAJIT=ON \
-DENABLE_CURSES=OFF \
@ -38,6 +37,13 @@ else
MINETEST_CONF_OPTS += -DBUILD_SERVER=OFF
endif
ifeq ($(BR2_PACKAGE_MINETEST_SOUND),y)
MINETEST_DEPENDENCIES += libvorbis openal
MINETEST_CONF_OPTS += -DENABLE_SOUND=ON
else
MINETEST_CONF_OPTS += -DENABLE_SOUND=OFF
endif
ifeq ($(BR2_PACKAGE_FREETYPE),y)
MINETEST_DEPENDENCIES += freetype
MINETEST_CONF_OPTS += -DENABLE_FREETYPE=ON