diff options
author | Will Newton <will.newton@gmail.com> | 2009-06-29 11:54:06 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-08-02 22:15:12 +0200 |
commit | 81f9990e021011146537c106190116d728477329 (patch) | |
tree | 5e1c60c91786447d3a49bd684da67c41db31f945 /package/webkit/Config.in | |
parent | 4840c451d93afb59725900b1d6ca84645113b897 (diff) |
webkit: Update to WebKit svn r44552.
Closes #427
- Fix generation of configure script and Makefiles.
- Add dependencies on libsoup and enchant.
- Allow configuration of rendering target (currently X11 or DirectFB).
Signed-off-by: Will Newton <will.newton@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/webkit/Config.in')
-rw-r--r-- | package/webkit/Config.in | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/package/webkit/Config.in b/package/webkit/Config.in index 9e3419aa7..e436f9acf 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -8,10 +8,27 @@ config BR2_PACKAGE_WEBKIT select BR2_PACKAGE_LIBXML2 select BR2_PACKAGE_LIBXSLT select BR2_PACKAGE_SQLITE + select BR2_PACKAGE_ENCHANT + select BR2_PACKAGE_LIBSOUP help - WebKit is an open source, standards compliant web browser engine. + WebKit is an open source, standards compliant web browser engine. - http://webkit.org/ + http://webkit.org/ comment "webkit requires a toolchain with C++ support and WCHAR enabled" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR + +choice + prompt "Rendering target" + default BR2_PACKAGE_WEBKIT_X + help + Selects which rendering target will be used. + +config BR2_PACKAGE_WEBKIT_X11 + bool "X11" + +config BR2_PACKAGE_WEBKIT_DIRECTFB + bool "DirectFB" + select BR2_PACKAGE_DIRECTFB + +endchoice |