Commit b030b585 authored by Vicente Olivert Riera's avatar Vicente Olivert Riera Committed by Peter Korsgaard
Browse files

qt: webkit is now supported on MIPS64

Since qt's version has been bumped to 4.8.6 we can add support for
webkit on MIPS64 architectures (both big and little endian). It wasn't
possible on 4.8.5 because QtScript wasn't supported on MIPS64, but that
has been fixed on 4.8.6.

With reference to:
   https://codereview.qt-project.org/#change,73022



Signed-off-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: default avatarMarkos Chandras <Markos.Chandras@imgtec.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 8b091e1d
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -358,8 +358,9 @@ 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_powerpc || BR2_sh4 || BR2_sh4eb || \
		BR2_sh4a || BR2_sh4aeb || BR2_sparc || BR2_x86_64
		BR2_mipsel || BR2_mips64 || BR2_mips64el || BR2_powerpc || \
		BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb || \
		BR2_sparc || BR2_x86_64

config BR2_PACKAGE_QT_WEBKIT
	bool "WebKit Module"