diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-05-28 10:27:06 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-29 21:28:15 +0200 |
commit | 8762110c46084bf7e1ba302354e8325204c7d275 (patch) | |
tree | e2f19ccdaae7df1e1d3778410d8dde571a220454 /package/qt5/qt5quick1 | |
parent | c5f9a4fb91f7a19a9a507490a8f1d3d40ab708ba (diff) | |
download | buildroot-novena-8762110c46084bf7e1ba302354e8325204c7d275.tar.gz buildroot-novena-8762110c46084bf7e1ba302354e8325204c7d275.zip |
qt5jsbackend: only available on ARM, x86, x86-64 and mipsel
The v8 Javascript virtual machine that is the core of qt5jsbackend is
only available on certain architectures. At the moment, only ARM, x86,
x86-64 and mipsel are supported.
Fixes:
http://autobuild.buildroot.org/results/a2e/a2e62e2deaa28ec9d4d957523a00ee0b7a634950/build-end.log
[Peter: also add dependency for qt5graphicaleffects]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/qt5/qt5quick1')
-rw-r--r-- | package/qt5/qt5quick1/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/qt5/qt5quick1/Config.in b/package/qt5/qt5quick1/Config.in index 99fd5a4d8..65b1f621a 100644 --- a/package/qt5/qt5quick1/Config.in +++ b/package/qt5/qt5quick1/Config.in @@ -10,6 +10,7 @@ config BR2_PACKAGE_QT5QUICK1 depends on !BR2_PREFER_STATIC_LIB depends on BR2_PACKAGE_HAS_OPENGL_EGL depends on BR2_PACKAGE_HAS_OPENGL_ES + depends on BR2_PACKAGE_QT5JSBACKEND_AVAILABLE help Qt is a cross-platform application and UI framework for developers using C++. @@ -19,4 +20,5 @@ config BR2_PACKAGE_QT5QUICK1 http://qt-project.org comment "qt5quick1 requires an OpenGL-capable backend" - depends on !BR2_PACKAGE_HAS_OPENGL_EGL || !BR2_PACKAGE_HAS_OPENGL_ES + depends on (!BR2_PACKAGE_HAS_OPENGL_EGL || !BR2_PACKAGE_HAS_OPENGL_ES) && \ + BR2_PACKAGE_QT5JSBACKEND_AVAILABLE |