diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-06-13 22:25:25 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-13 22:25:25 +0200 |
commit | 4303e3e11334549d817d03096c030d659acfdb79 (patch) | |
tree | beb08dbd341f3e8036d35c26a63e3ae8c315d7d7 | |
parent | fc377f233870e52466104db992414ca32873cc0a (diff) | |
download | buildroot-4303e3e11334549d817d03096c030d659acfdb79.tar.gz buildroot-4303e3e11334549d817d03096c030d659acfdb79.zip |
qt: enable opengl support by default if available
If opengl(-es) support is available then it makes sense for Qt to use it by
default.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/qt/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in index 91eb208475..99b00a0d85 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -354,6 +354,7 @@ config BR2_PACKAGE_QT_OPENGL bool "OpenGL support" depends on (BR2_PACKAGE_HAS_LIBGL && BR2_PACKAGE_QT_X11) || \ (BR2_PACKAGE_HAS_LIBEGL && BR2_PACKAGE_HAS_LIBGLES) + default y help This option enables OpenGL support. |