b62fdfdc27
Since the main python-pyqt5 option is not visible when BR2_PACKAGE_QT is enabled, the comment should also not be visibled when BR2_PACKAGE_QT is enabled. Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
597 B
Plaintext
19 lines
597 B
Plaintext
comment "python-pyqt5 needs a toolchain w/ wchar, NPTL, C++, dynamic library"
|
|
depends on !BR2_PACKAGE_QT
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_PYTHON_PYQT5
|
|
bool "python-pyqt5"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR # qt5
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # qt5
|
|
depends on !BR2_STATIC_LIBS # qt5
|
|
depends on !BR2_PACKAGE_QT # qt5
|
|
select BR2_PACKAGE_QT5
|
|
select BR2_PACKAGE_PYTHON_SIP
|
|
help
|
|
Python bindings for Qt 5
|
|
|
|
http://www.riverbankcomputing.com/software/pyqt/
|