Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment
@ 2016-04-25  9:34 Bernd Kuhls
  2016-04-25  9:34 ` [Buildroot] [PATCH 2/2] package/glmark2: gl support depends on X.org Bernd Kuhls
  2016-04-25 19:17 ` [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2016-04-25  9:34 UTC (permalink / raw)
  To: buildroot

glmark2 depends on mesa3d which already depends on BR2_INSTALL_LIBSTDCPP
and BR2_TOOLCHAIN_HAS_THREADS_NPTL, glmark2 does not depend on udev so
the comment stating all these dependencies is not needed.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/glmark2/Config.in | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/package/glmark2/Config.in b/package/glmark2/Config.in
index 052e820..9167fc5 100644
--- a/package/glmark2/Config.in
+++ b/package/glmark2/Config.in
@@ -21,7 +21,3 @@ config BR2_PACKAGE_GLMARK2
 	  glmark2 is an OpenGL 2.0 and ES 2.0 benchmark.
 
 	  https://github.com/glmark2/glmark2
-
-comment "glmark2 needs udev /dev management and a toolchain w/ C++, NPTL"
-	depends on !BR2_INSTALL_LIBSTDCPP || \
-		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_PACKAGE_HAS_UDEV
-- 
2.8.0.rc3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] package/glmark2: gl support depends on X.org
  2016-04-25  9:34 [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Bernd Kuhls
@ 2016-04-25  9:34 ` Bernd Kuhls
  2016-04-25 19:17 ` [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Bernd Kuhls @ 2016-04-25  9:34 UTC (permalink / raw)
  To: buildroot

https://git.busybox.net/buildroot/commit/package/mesa3d?id=f1894ec95728806e09405d26663e0ea371afaeab
removed the dependency on X.org for DRI drivers, this patch adds it
again as reverse dependency.

Fixes
http://autobuild.buildroot.net/results/461/46146a63f83e318f1213ec1d558558e3404d8ff8/
http://autobuild.buildroot.net/results/c91/c91f6bce6f8a0691467a5ca16d5fe15687ee945c/
http://autobuild.buildroot.net/results/ac5/ac560e36977f90cf93098c987d401d64edce24cb/
http://autobuild.buildroot.net/results/c71/c712af468012b1e23e3048207611f0da78fb1ae0/
http://autobuild.buildroot.net/results/b82/b8251a40f5eb5e1124e1a6e1abe407db83c75371/
http://autobuild.buildroot.net/results/667/667b7847e47b1d272d028da4a18d77e70ab01875/
http://autobuild.buildroot.net/results/6a4/6a45e32c0f894508d05c964a9a0fd645b6f3d6e4/
http://autobuild.buildroot.net/results/d96/d960bcfff386310e265d0d40533ef2ef7f74d5fe/
http://autobuild.buildroot.net/results/7bd/7bd41a86d60543d3de4483f86f0b5a719cf480b9/
and others

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/glmark2/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/glmark2/Config.in b/package/glmark2/Config.in
index 9167fc5..4d455c0 100644
--- a/package/glmark2/Config.in
+++ b/package/glmark2/Config.in
@@ -8,6 +8,7 @@ config BR2_PACKAGE_GLMARK2_GL
 	bool
 	default y
 	depends on BR2_PACKAGE_MESA3D_DRI_DRIVER
+	depends on BR2_PACKAGE_XORG7
 
 comment "glmark2 needs an OpenGL or an openGL ES and EGL backend provided by mesa3d"
 	depends on !BR2_PACKAGE_GLMARK2_GL && !BR2_PACKAGE_GLMARK2_EGL_GLES
-- 
2.8.0.rc3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment
  2016-04-25  9:34 [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Bernd Kuhls
  2016-04-25  9:34 ` [Buildroot] [PATCH 2/2] package/glmark2: gl support depends on X.org Bernd Kuhls
@ 2016-04-25 19:17 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2016-04-25 19:17 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > glmark2 depends on mesa3d which already depends on BR2_INSTALL_LIBSTDCPP
 > and BR2_TOOLCHAIN_HAS_THREADS_NPTL, glmark2 does not depend on udev so
 > the comment stating all these dependencies is not needed.

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-25 19:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25  9:34 [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Bernd Kuhls
2016-04-25  9:34 ` [Buildroot] [PATCH 2/2] package/glmark2: gl support depends on X.org Bernd Kuhls
2016-04-25 19:17 ` [Buildroot] [PATCH 1/2] package/glmark2: remove unneeded comment Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox