From: Romain Naour <romain.naour@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v3 05/10] package/minetest: enable sound support
Date: Thu, 13 Jul 2017 14:40:47 +0200 [thread overview]
Message-ID: <20170713124052.13708-5-romain.naour@gmail.com> (raw)
In-Reply-To: <20170713124052.13708-1-romain.naour@gmail.com>
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
v3: Add comment in Config.in (ThomasP)
---
package/minetest/Config.in | 13 +++++++++++++
package/minetest/minetest.mk | 8 +++++++-
2 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/package/minetest/Config.in b/package/minetest/Config.in
index a76c319..4e8b1d0 100644
--- a/package/minetest/Config.in
+++ b/package/minetest/Config.in
@@ -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"
diff --git a/package/minetest/minetest.mk b/package/minetest/minetest.mk
index 528f140..44a28ce 100644
--- a/package/minetest/minetest.mk
+++ b/package/minetest/minetest.mk
@@ -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
--
2.9.4
next prev parent reply other threads:[~2017-07-13 12:40 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-13 12:40 [Buildroot] [PATCH v3 01/10] package/minetest: new package Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 02/10] package/minetest: add libcurl optional dependency Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 03/10] package/minetest: add NLS " Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 04/10] package/minetest: add freetype " Romain Naour
2017-07-13 12:40 ` Romain Naour [this message]
2017-07-13 12:40 ` [Buildroot] [PATCH v3 06/10] package/minetest: add postgresql " Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 07/10] package/minetest: add hiredis " Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 08/10] package/minetest: add leveldb " Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 09/10] package/minetest: add libspatialindex " Romain Naour
2017-07-13 12:40 ` [Buildroot] [PATCH v3 10/10] package/minetest_game: new package Romain Naour
2017-10-21 15:28 ` [Buildroot] [PATCH v3 01/10] package/minetest: " Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170713124052.13708-5-romain.naour@gmail.com \
--to=romain.naour@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox