mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-04-23 06:47:16 +00:00

In commit 3e99c8418af904b14b01455d68c84d7b5afd261f ("package/qwt: remove qt4 support"), the following line was incorrectly dropped: select BR2_PACKAGE_QT5BASE_GUI if BR2_PACKAGE_QT5 Due to this, qt5base can now be configured with widgets enabled but gui disabled, causing the following build issue: ERROR: Feature 'widgets' was enabled, but the pre-condition 'features.gui' failed. Re-introduce the proper select, but slightly simplified since only Qt5 is supported now. Fixes: http://autobuild.buildroot.net/results/c771c2d5aac3e21f908e5a118f3755dbc9301a47 Signed-off-by: Peter Seiderer <ps.report@gmx.net> [Thomas: rework commit log] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
690 B
Plaintext
30 lines
690 B
Plaintext
config BR2_PACKAGE_QWT
|
|
bool "qwt"
|
|
depends on BR2_PACKAGE_QT5
|
|
select BR2_PACKAGE_QT5BASE
|
|
select BR2_PACKAGE_QT5BASE_GUI
|
|
select BR2_PACKAGE_QT5BASE_WIDGETS # printsupport
|
|
select BR2_PACKAGE_QT5BASE_CONCURRENT
|
|
help
|
|
Qwt is a graphics extension to the Qt GUI application
|
|
framework. It provides a 2D plotting widget and more.
|
|
|
|
http://qwt.sourceforge.net/
|
|
|
|
if BR2_PACKAGE_QWT
|
|
|
|
config BR2_PACKAGE_QWT_SVG
|
|
bool "SVG support"
|
|
select BR2_PACKAGE_QT5SVG
|
|
|
|
config BR2_PACKAGE_QWT_MATHML
|
|
bool "MathML support"
|
|
|
|
config BR2_PACKAGE_QWT_OPENGL
|
|
bool "OpenGL support"
|
|
depends on BR2_PACKAGE_QT5_GL_AVAILABLE
|
|
select BR2_PACKAGE_QT5BASE_OPENGL
|
|
select BR2_PACKAGE_QT5BASE_OPENGL_LIB
|
|
|
|
endif
|