diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-06-13 20:23:14 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-13 22:26:35 +0200 |
commit | b1d5aa1bc2b757eef2479947413ecd1dec99e07e (patch) | |
tree | d2292c8b8c7f2e1d890d4904b35a86971d33107b | |
parent | 4303e3e11334549d817d03096c030d659acfdb79 (diff) | |
download | buildroot-b1d5aa1bc2b757eef2479947413ecd1dec99e07e.tar.gz buildroot-b1d5aa1bc2b757eef2479947413ecd1dec99e07e.zip |
package/qwt: Fix selecting OpenGL support in qt4
A Kconfig option being part of a choice can not be selected directly,
so we use the new option BR2_PACKAGE_QT_OPENGL.
Fixes
http://autobuild.buildroot.net/results/2a8/2a8edb18ab7f8a9e324966282858014e9b5bbea0/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/qwt/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/qwt/Config.in b/package/qwt/Config.in index 810bd754ba..dabbda2775 100644 --- a/package/qwt/Config.in +++ b/package/qwt/Config.in @@ -29,7 +29,7 @@ config BR2_PACKAGE_QWT_OPENGL bool "OpenGL support" depends on (BR2_PACKAGE_HAS_LIBGLES && BR2_PACKAGE_HAS_LIBEGL && BR2_PACKAGE_QT) || \ (BR2_PACKAGE_QT5_GL_AVAILABLE && BR2_PACKAGE_QT5) - select BR2_PACKAGE_QT_OPENGL_ES if BR2_PACKAGE_QT + select BR2_PACKAGE_QT_OPENGL if BR2_PACKAGE_QT select BR2_PACKAGE_QT5BASE_OPENGL_LIB if BR2_PACKAGE_QT5 endif |