diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-12-16 08:16:42 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-16 21:54:00 +0100 |
commit | 57c489ce5a7cfc8c4122515fbc4f4b13a4a6ec33 (patch) | |
tree | fad59e43e070b4ec4a8b391c2fab3830f539d778 | |
parent | 147f1dc802b16a1bda81401f7d23619ca9235c04 (diff) | |
download | buildroot-57c489ce5a7cfc8c4122515fbc4f4b13a4a6ec33.tar.gz buildroot-57c489ce5a7cfc8c4122515fbc4f4b13a4a6ec33.zip |
openal: needs NPTL threads
Fixes:
http://autobuild.buildroot.net/results/ef2/ef22efa0f8a73458852b529a32a7f21e9c72caa8/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/openal/Config.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/openal/Config.in b/package/openal/Config.in index 0f9d03da83..4a73f45beb 100644 --- a/package/openal/Config.in +++ b/package/openal/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_OPENAL bool "openal" depends on BR2_INSTALL_LIBSTDCPP - depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL help OpenAL provides capabilities for playing audio in a virtual 3D environment. Distance attenuation, doppler shift, and @@ -10,5 +10,6 @@ config BR2_PACKAGE_OPENAL http://kcat.strangesoft.net/openal.html -comment "openal needs a toolchain w/ threads, C++" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP +comment "openal needs a toolchain w/ NPTL, C++" + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL \ + || !BR2_INSTALL_LIBSTDCPP |