|
@@ -364,10 +364,12 @@ config BR2_PACKAGE_QT_NETWORK
|
|
|
config BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
|
|
|
bool
|
|
|
# see src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h
|
|
|
- default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \
|
|
|
- BR2_mipsel || BR2_mips64 || BR2_mips64el || BR2_powerpc || \
|
|
|
- BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb || \
|
|
|
- BR2_sparc || BR2_x86_64
|
|
|
+ # see http://lists.busybox.net/pipermail/buildroot/2014-November/112605.html
|
|
|
+ default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_microblazeel || \
|
|
|
+ BR2_microblazebe || BR2_mips || BR2_mipsel || \
|
|
|
+ (BR2_mips64 || BR2_mips64el) && !BR2_MIPS_NABI32 || BR2_powerpc || \
|
|
|
+ BR2_powerpc64 || BR2_powerpc64el || BR2_sh4 || BR2_sh4eb || \
|
|
|
+ BR2_sh4a || BR2_sh4aeb || BR2_sparc || BR2_x86_64
|
|
|
|
|
|
config BR2_PACKAGE_QT_WEBKIT
|
|
|
bool "WebKit Module"
|
|
@@ -401,9 +403,18 @@ config BR2_PACKAGE_QT_OPENSSL
|
|
|
target.
|
|
|
If unsure, say n.
|
|
|
|
|
|
+config BR2_PACKAGE_QT_ARCH_SUPPORTS_SCRIPT
|
|
|
+ bool
|
|
|
+ # see http://lists.busybox.net/pipermail/buildroot/2014-November/112605.html
|
|
|
+ default y if BR2_arm || BR2_armeb || aarch64 || BR2_i386 || \
|
|
|
+ BR2_microblazeel || BR2_microblazebe || BR2_mips || BR2_mipsel || \
|
|
|
+ BR2_mips64 || BR2_mips64el || BR2_nios2 || BR2_powerpc || \
|
|
|
+ BR2_powerpc64 || BR2_powerpc64el || BR2_sh4 || BR2_sh4eb || \
|
|
|
+ BR2_sh4a || BR2_sh4aeb || BR2_sparc || BR2_x86_64
|
|
|
+
|
|
|
config BR2_PACKAGE_QT_SCRIPT
|
|
|
bool "Script Module"
|
|
|
- depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
|
|
|
+ depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_SCRIPT
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # needs pthread_getattr_np()
|
|
|
default y
|
|
|
help
|
|
@@ -412,7 +423,7 @@ config BR2_PACKAGE_QT_SCRIPT
|
|
|
|
|
|
comment "Script Module needs a toolchain with NPTL"
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
|
- depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
|
|
|
+ depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_SCRIPT
|
|
|
|
|
|
config BR2_PACKAGE_QT_SCRIPTTOOLS
|
|
|
bool "Script Tools Module"
|