]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
webkit: Restrict supported architectures
authorMarkos Chandras <markos.chandras@imgtec.com>
Wed, 14 Aug 2013 12:20:09 +0000 (13:20 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 15 Aug 2013 16:35:43 +0000 (18:35 +0200)
See Source/WTF/wtf/Platform.h. Webkit is only supported for
arm, armeb, i386, mips, mipsel, powerpc, sh, sparc, x86_64.

[Thomas P: propagate dependency to the midori package.]

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/midori/Config.in
package/webkit/Config.in

index d35874097fda41bbfd87dbf6cc21d30f27f16df8..66279f96e674f4ce74e9c684c72b02518c67b186 100644 (file)
@@ -8,6 +8,8 @@ config BR2_PACKAGE_MIDORI
        depends on BR2_INSTALL_LIBSTDCPP # webkit
        depends on BR2_TOOLCHAIN_HAS_THREADS # webkit -> enchant -> libglib2
        depends on BR2_USE_WCHAR         # webkit
+       depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel || \
+                   BR2_powerpc || BR2_sh || BR2_sparc || BR2_x86_64) # webkit
        help
          Midori is a lightweight web browser based on WebKit
 
index 92cbc62ecd412e02dca5a0c1f81ad7f67a6dc63f..789e427f31430ffaa523b8b6256ff5581d0cc49d 100644 (file)
@@ -4,6 +4,8 @@ config BR2_PACKAGE_WEBKIT
        depends on BR2_USE_WCHAR # enchant -> libglib2
        depends on BR2_TOOLCHAIN_HAS_THREADS # enchant -> libglib2
        depends on BR2_PACKAGE_LIBGTK2
+       depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel || \
+                   BR2_powerpc || BR2_sh || BR2_sparc || BR2_x86_64)
        select BR2_PACKAGE_ICU
        select BR2_PACKAGE_LIBCURL
        select BR2_PACKAGE_LIBXML2