All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] qt5base: don't enable KMS if it doesn't have udev
@ 2016-07-08  0:07 Akihiko Odaki
  2016-07-08  1:17 ` [Buildroot] [PATCH v2] " Akihiko Odaki
  0 siblings, 1 reply; 6+ messages in thread
From: Akihiko Odaki @ 2016-07-08  0:07 UTC (permalink / raw)
  To: buildroot


diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index bf541b0..60b4e94 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -30,8 +30,11 @@ QT5BASE_CONFIGURE_OPTS += \
 
 # Uses libgbm from mesa3d
 ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
-QT5BASE_CONFIGURE_OPTS += -kms -gbm
+QT5BASE_CONFIGURE_OPTS += -gbm
 QT5BASE_DEPENDENCIES += mesa3d
+ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
+QT5BASE_CONFIGURE_OPTS += -kms
+endif
 else
 QT5BASE_CONFIGURE_OPTS += -no-kms
 endif

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

end of thread, other threads:[~2016-08-20 19:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-08  0:07 [Buildroot] qt5base: don't enable KMS if it doesn't have udev Akihiko Odaki
2016-07-08  1:17 ` [Buildroot] [PATCH v2] " Akihiko Odaki
2016-07-08 18:53   ` Thomas Petazzoni
2016-07-17  2:05     ` Akihiko Odaki
2016-07-24 22:43       ` Akihiko Odaki
2016-08-20 19:27       ` Peter Seiderer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.