summaryrefslogtreecommitdiffstats
path: root/package/mesa3d
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2014-04-20 08:30:43 +0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-04-20 10:54:32 +0200
commit783c8f5acb108b0737f7a367cc55ff553959059e (patch)
tree9a98b383dda3060289174abe4cd86ea3cfcff976 /package/mesa3d
parent5bbe82c4ff43880d78c58cad35f7f9b1beafd4e3 (diff)
downloadbuildroot-783c8f5acb108b0737f7a367cc55ff553959059e.tar.gz
buildroot-783c8f5acb108b0737f7a367cc55ff553959059e.zip
mesa3d: needs NPTL threading
Strictly speaking, linuxthreads (new) should be enough, since it includes pthread_barrier_* implementation. However, we currently have no clean way to distinguish between LT and LT.old. Fixes: http://autobuild.buildroot.net/results/66a/66a9d2c664e0a9b2b0c51b998c72c2ceda90ff9b/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/mesa3d')
-rw-r--r--package/mesa3d/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
index 0793b486d9..06f2bc3821 100644
--- a/package/mesa3d/Config.in
+++ b/package/mesa3d/Config.in
@@ -12,6 +12,7 @@ menuconfig BR2_PACKAGE_MESA3D
select BR2_PACKAGE_LIBXCB if BR2_PACKAGE_XSERVER_XORG_SERVER
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_LARGEFILE
+ depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
help
Mesa 3D, an open-source implementation of the OpenGL specification.
@@ -124,5 +125,6 @@ config BR2_PACKAGE_PROVIDES_LIBGLES
endif # BR2_PACKAGE_MESA3D
-comment "mesa3d needs a toolchain w/ C++, largefile"
- depends on !BR2_LARGEFILE || !BR2_INSTALL_LIBSTDCPP
+comment "mesa3d needs a toolchain w/ C++, largefile, NPTL"
+ depends on !BR2_LARGEFILE || !BR2_INSTALL_LIBSTDCPP || \
+ !BR2_TOOLCHAIN_HAS_THREADS_NPTL
OpenPOWER on IntegriCloud