summaryrefslogtreecommitdiff
path: root/package/mesa3d
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2016-01-04 01:11:45 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-01-05 00:15:08 +0100
commit8eab11289914aaa8c022776578426b9b58319e02 (patch)
tree26b585de63b922d03b8426f4c5ff77e337d78765 /package/mesa3d
parent5c63280caf23ca7438e2fe23586cca9f450fc936 (diff)
package/mesa3d: reorder select/depends
>From [1]: "Even though the ordering has absolutely no consequences in Kconfig, it is not logical (when reading). It is more logical and far easier to understand when depends come first, followed by the selects." Also, the Config.in exemple in the manual suggest to use this coding style [2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-October/142955.html [2] http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-config-in Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/mesa3d')
-rw-r--r--package/mesa3d/Config.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
index 6e16f9d64..fd7e7f855 100644
--- a/package/mesa3d/Config.in
+++ b/package/mesa3d/Config.in
@@ -1,5 +1,10 @@
menuconfig BR2_PACKAGE_MESA3D
bool "mesa3d"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on !BR2_STATIC_LIBS
+ depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
+ # Triggers the _gp link issue in nios2
+ depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
select BR2_PACKAGE_LIBDRM
select BR2_PACKAGE_EXPAT
select BR2_PACKAGE_XPROTO_DRI2PROTO if BR2_PACKAGE_XORG7
@@ -10,11 +15,6 @@ menuconfig BR2_PACKAGE_MESA3D
select BR2_PACKAGE_XLIB_LIBXDAMAGE if BR2_PACKAGE_XORG7
select BR2_PACKAGE_XLIB_LIBXFIXES if BR2_PACKAGE_XORG7
select BR2_PACKAGE_LIBXCB if BR2_PACKAGE_XORG7
- depends on BR2_INSTALL_LIBSTDCPP
- depends on !BR2_STATIC_LIBS
- depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
- # Triggers the _gp link issue in nios2
- depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
help
Mesa 3D, an open-source implementation of the OpenGL specification.