diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-27 15:10:08 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-27 15:10:08 +0000 |
commit | 0441f3c64b587e1ffe5d8246a6c97a556b61bfa9 (patch) | |
tree | d735e77a153972b17c1984c01c6ad751459f4f50 | |
parent | c6da11ea450ac2351162f8d1097c6f211c8cdbd4 (diff) | |
download | buildroot-novena-0441f3c64b587e1ffe5d8246a6c97a556b61bfa9.tar.gz buildroot-novena-0441f3c64b587e1ffe5d8246a6c97a556b61bfa9.zip |
webkit: depend on C++ + wchar support in toolkit, as icu needs it
-rw-r--r-- | package/webkit/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/webkit/Config.in b/package/webkit/Config.in index dbb10b2bd..9e3419aa7 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -1,5 +1,7 @@ config BR2_PACKAGE_WEBKIT bool "webkit" + depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_WCHAR select BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_ICU select BR2_PACKAGE_CURL @@ -11,3 +13,5 @@ config BR2_PACKAGE_WEBKIT http://webkit.org/ +comment "webkit requires a toolchain with C++ support and WCHAR enabled" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR |